angel9
Forum Replies Created
-
Hello Reza,
I’m sure the option is enabled.Attachment:
https://drive.google.com/file/d/1mhIeL1Hdl5CVrj1BMa7x6hQMR2ENk8Mn/view?usp=sharing- This reply was modified 2 years, 6 months ago by angel9.
Hi,
Thank you for your reply.
screenshot:
1.
https://drive.google.com/file/d/1HNnBAFmY0r9RvSA_q6Bu2dRa3fagtnH9/view?usp=sharing2.
https://drive.google.com/file/d/1xizFJ9EMfgbn2zxxSZL_fJQTtICQhQb2/view?usp=sharing
https://drive.google.com/file/d/1Prtl3MDPyilzE9viRHDTc-j__Vuq8tlb/view?usp=sharing- This reply was modified 2 years, 6 months ago by angel9.
Forum: Plugins
In reply to: [Deeper Comments] Some PHP Notice And Warning MessageGood! Issue was fixed in 2.0.2
Forum: Themes and Templates
In reply to: [Lightning] サイドバーに小さな問題があるかもしれませんPerfect! issue solved!
Forum: Themes and Templates
In reply to: [Lightning] サイドバーに小さな問題があるかもしれませんThe problem only show when using the fix sidebar.
Forum: Themes and Templates
In reply to: [Lightning] サイドバーに小さな問題があるかもしれませんI use Lightning 13.5.4, But I made the screenshot video from this site:
https://lightning.nagoya/featureForum: Themes and Templates
In reply to: [Lightning] サイドバーに小さな問題があるかもしれませんThank you for your attention, Please click the link below.
https://drive.google.com/file/d/1_pMvkl6RLReX3OJ66UOsJy6aFCqD58gs/view?usp=sharing
Forum: Themes and Templates
In reply to: [Lightning] サイドバーに小さな問題があるかもしれませんSorry! @kurudrive, I test in localhost.
Well done!
Issue was clean now.Forum: Themes and Templates
In reply to: [Blocksy] Search issue in some page.Thanks @creativethemeshq,
I just test the site in localhost.
Forum: Plugins
In reply to: [Flexible Captcha] Can’t uninstall Plugin!Hello @foomagoo
I fix some code of the “Uninstall.php”
Step 1:
Change
$wpdb->query(“DROP TABLE IF EXISTS “.$wpdb->prefix.'”FC_captcha_store”);
To
$wpdb->query(“DROP TABLE IF EXISTS “.$wpdb->prefix.”FC_captcha_store”);Step 2:
Add Code:
require_once(WP_PLUGIN_DIR . “/” . plugin_basename(dirname(__FILE__)) . “/lib/FlexibleCaptcha.class.php”);
$Captcha_fontDirectory = new FlexibleCaptcha(__FILE__);Change
if (is_array(get_option(‘FC_uploaded_fonts’))) {
foreach(get_option(‘FC_uploaded_fonts’) as $fontFile) {
if (file_exists($this->fontDirectory . $fontFile)) {
@unlink($this->fontDirectory . $fontFile);
}
}
delete_option(‘FC_uploaded_fonts’);
}if (file_exists($this->fontDirectory)) {
@unlink($this->fontDirectory);
}To
if (is_array(get_option(‘FC_uploaded_fonts’))) {
foreach(get_option(‘FC_uploaded_fonts’) as $fontFile) {
if (file_exists($Captcha_fontDirectory->fontDirectory . $fontFile)) {
@unlink($Captcha_fontDirectory->fontDirectory . $fontFile);
}
}
delete_option(‘FC_uploaded_fonts’);
}if (file_exists($Captcha_fontDirectory->fontDirectory)) {
@unlink($Captcha_fontDirectory->fontDirectory);
}Forum: Plugins
In reply to: [Flexible Captcha] Can’t uninstall Plugin!Thanks, I was fixed this problem.
Nice Work! Pretty Good Plugins!
Hello nk.
I made a ScreenFlow for you.https://drive.google.com/file/d/1dLedfKfXolTC7oJaeNNMD63o-7L-xLND/view?usp=sharing
Forum: Plugins
In reply to: [Asgaros Forum] A issue of jsHi,@asgaros
The issue still in the latest version of WordPress (5.4)
Maybe caused by plugin “TinyMCE Advanced”
Could you fix that?