Goto Hayato
Forum Replies Created
-
Hi @smashballoonlouis ,
Thank you very much for your very thorough support!
It turns out that a custom style that had been added some time ago was causing issues when trying to customize the number of columns in the smartphone layout. I hadn’t noticed that…
The issue was resolved by applying the Option 1.
Thanks to your help, everything has been successfully fixed. Thank you very much!
Thank you for your swift reply! I’m sorry for my slow response.
The page URL is https://mamas-fukui.com . The widget is displayed around https://mamas-fukui.com/#:~:text=%E3%81%94%E5%88%A9%E7%94%A8%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84%E3%80%82-,Instagram,-NEWS . You can see the display when you set the window width less than or equal to 640px. Please have a look. Thanks!
Forum: Plugins
In reply to: [Login No Captcha reCAPTCHA] Where can we send PRs to this plugin?Robert, thank you for your support! I’m sorry for the late response. I’ll be sending a PR on GitHub soon. Thanks!
Thanks! I think many sites would benefit if this is improved 🙂
I’m looking forward to seeing the improvement.
This issue should now be solved with 3.33.0.
I confirmed the issue has gone with 3.33.0. Thanks!
I bumped into this issue.
To resolve this, you would need to switch MySQLi storage engine so that sites can store firewall data in the MySQL database instead of using files in “wp-content/wflogs/“.
Unfortunately this is not applicable in this case as the file
wordfence-waf.phpwhere one should declare the constantWFWAF_STORAGE_ENGINEto switch to the MySQLi storage doesn’t exist yet.It might be possible to work around the warning using
wp-config.php, but there should be a way to activate the plugin with WP-CLI without any issue…The beta version looks fine.
In my case I needed a quick fix and directly tweaked the line that raises the warning:
from:
$html[] = '<div id="metaslider-id-' . esc_attr($this->id) . '" style="' . esc_attr($this->get_container_style()) . '" class="' . esc_attr($this->get_container_class()) . '" role="region" aria-roledescription="Slideshow" aria-label="' . esc_attr($this->settings['title']) . '">';to:
$html[] = '<div id="metaslider-id-' . esc_attr($this->id) . '" style="' . esc_attr($this->get_container_style()) . '" class="' . esc_attr($this->get_container_class()) . '">';in
inc/slider/metaslider.class.php(the line is around 241). It stopped the flood of the warning. This removesroleandaria-roledescriptionas well asaria-labelbut it’s fine for me.I removed the widget from the page temporarily.
Thank you for your swift reply.
The page is https://mamas-fukui.com/ . The current shortcode which worked before is
[custom-facebook-feed]. It was embedded into the page via the block editor (shortcode block).Seeing the manual page for v4 (https://smashballoon.com/doc/setting-up-the-free-custom-facebook-feed-wordpress-plugin-4-0/), I noticed that the shortcode format is
[custom-facebook-feed feed=1]in v4. It’s different from the shortcode used in the site. Did I miss any upgrade task?Thanks,
And an existing feed was broken at the same day. The following message is displayed in the front page now.
No source found for this feed. It looks like you may have removed the account this feed was using to display posts. Go to this page, switch to the settings tab and click the sources menu item to manage sources for this feed.
Please enter the Page ID of the Facebook feed you’d like to display. You can do this in either the Custom Facebook Feed plugin settings or in the shortcode itself. For example, [custom-facebook-feed id=YOUR_PAGE_ID_HERE].
I’m not sure this is related with the error.
Thank you for your reply. It does not affect the functions of my site if I understand it correctly and I will wait for the upcoming update. Thank you for your support!
I got the same warning. I downloaded the latest plugin in the plugin page as @joelsmashballoon told. I
diffed the 2CFF_Feed_Locator.php— one in my active website and another in the downloaded version but they are not different…How can I help to address this issue? Thanks.
The versions I use in the production:
– WP 5.6.2
– Smash Balloon Custom Facebook Feed 2.19- This reply was modified 5 years, 2 months ago by Goto Hayato.
I met the same problem. It seems that the newly added file
class-sbi-tracking.phpwas not committed in v2.4.2 and that is the cause, I guess:https://plugins.trac.wordpress.org/changeset/2305936
As smashballoonmike says, reinstalling the plugin must fix the issue. In my case, I just added the missing file
class-sbi-tracking.phpin the correct path and the error disappeared 😀