FrodoBean
Forum Replies Created
-
Forum: Plugins
In reply to: [MainWP Child Reports] Client reports showing token nameI’m also having the same issue with the free client reports plugin.
Forum: Plugins
In reply to: [RA Widgets Animate] Bug: Creates extra space when hidden@wagedu closing this for now, Please open an issue if you found any :). Thanks!
Forum: Plugins
In reply to: [RA Widgets Animate] Bug: Creates extra space when hiddenHi @wagedu,
Sorry for the late response. Thanks for installing my plugin by the way. Can you try adding the following code:
html, body { overflow-x: hidden; }
Let me know if it resolves your issue. Don’t forget to rate the plugin if you have time, I’ll appreciate it :).
Thanks!
Hi,
Thanks for reporting the issue, your feedback is always appreciated :). The issue should be fixed now, please update to the latest version.
Thanks!
Forum: Plugins
In reply to: [RA Widgets Bundle] carousel natvigationYou’re welcome. If you have time please rate the plugin :).
Thanks!
- This reply was modified 6 years, 10 months ago by FrodoBean.
Forum: Plugins
In reply to: [RA Widgets Bundle] carousel natvigationHi,
If the previous code doesn’t work, please try the updated code:
add_action( 'wp_footer', 'wporg_enqueue_scripts' ); function wporg_enqueue_scripts() { wp_deregister_script( 'owl-js' ); wp_dequeue_script( 'owl-js' ); // Dequeue Ultimate Addons for SiteOrigin Owl Carousel script }
Also, just a caution it will break widgets from Ultimate Addons for SiteOrigin that uses the Owl Carousel script (e.g. Testimonial Widget).
- This reply was modified 6 years, 10 months ago by FrodoBean.
Forum: Plugins
In reply to: [RA Widgets Bundle] carousel natvigationHi,
It seems it’s an issue with the Ultimate Addons for SiteOrigin which uses either a modified Owl Carousel or an outdated version since it’s overwriting the Owl Carousel markup present in my plugin. I’ve tested it on my local development machine and can confirm the behavior.
You could add the following to your functions.php to use my version of Owl Carousel plugin:
add_action( 'wp_enqueue_scripts', 'wporg_enqueue_scripts' ); function wporg_enqueue_scripts() { wp_dequeue_script( 'owl-js' ); // Dequeue Ultimate Addons for SiteOrigin Owl Carousel script }
Thanks!
- This reply was modified 6 years, 10 months ago by FrodoBean. Reason: Added additional information
Forum: Plugins
In reply to: [RA Widgets Bundle] carousel natvigationHi,
Thanks for your interest in my plugin. Can you provide your website URL?
Thanks!
Forum: Plugins
In reply to: [RA Widgets Animate] One more regex fixPlugin updated, Thanks!
Forum: Plugins
In reply to: [RA Widgets Animate] One more regex fixThanks for the suggested fix, I’ll be updating the plugin with the fix soon.
Forum: Plugins
In reply to: [RA Widgets Animate] Regex Bux FixHi,
Bug fixed. Please update to the latest version.
Thanks!
Forum: Plugins
In reply to: [RA Widgets Animate] Regex Bux FixHi,
Bug fixed. Please update to the latest version.
Thanks!
Forum: Plugins
In reply to: [RA Widgets Animate] Regex Bux FixHi,
Can you provide an example of widgets that don’t have class attributes so I can further test? By the way, thanks for the bug fix. I’ll release an update to the plugin soon, If you have GitHub account you can create an issue here or pull requests here.
Thanks!
- This reply was modified 7 years, 4 months ago by FrodoBean.
Forum: Plugins
In reply to: [Limit Widgets] Limit Widgets and WP 3.6enclosing the foreach statement with
if (is_array($sidebarLimits)) {}
solves the issue for me.