disinfor
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] I am getting this warning@wpreceiver you shouldn’t need that filter at all, since WordPress core already resizes images. That filter shouldn’t affect anything you need.
Forum: Plugins
In reply to: [WooCommerce] I am getting this warningThis error is generated when SVGs are used, even outside of WooCommerce. This isn’t a server PHP version issue.
WooCommerce is trying to regenerate images in class-wc-regenerate-images.php in the
maybe_resize_image
method on line 201. Since SVGs don’t have a width/height attribute, the array keys don’t exists.To fix this before WC can fix their code, you can set the filter
woocommerce_resize_images
tofalse
.The code:
add_filter('woocommerce_resize_images', static function() { return false; });
This can be added to your functions.php in your theme.
Forum: Plugins
In reply to: [Oasis Workflow] Quick Edit doesn’t work when plugin enabledOpened up a ticket.
Thanks!
Forum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Conflict with Yoast SEO pluginClosing this as it was related to a piece of theme code that appeared unrelated to the issue.
Closing as this appears to be a conflict with another plugin.
Forum: Plugins
In reply to: [User Role Editor] Divi 2.7.10 Library and Custom RoleHere’s the link to the information I had mentioned:
Forum: Plugins
In reply to: [Timeline Express] Conflict With Yoast SEO PluginCan confirm this is indeed an issue with Yoast SEO. I’m experiencing the exact issue as well. NOTE: Also using the Elegant Themes DIVI theme version 2.6.4.4.
Forum: Plugins
In reply to: [Simple Page Sidebars] Unique sidebar on each postsYou should be able to by adding this to your
functions.php
filefunction myprefix_init() { add_post_type_support( 'post', 'simple-page-sidebars' ); } add_action( 'init', 'myprefix_init' );
Forum: Plugins
In reply to: [Text Widget with Class] Bug with the titelHey Vinuel,
The new version should work for you now.
Thanks!
Forum: Plugins
In reply to: [Text Widget with Class] Bug with the titelAh! I see what’s happening. I’ll write a fix for that.
Thanks!
Forum: Plugins
In reply to: [Text Widget with Class] Bug with the titelHey Vinuel,
I just did an update to the plugin that will hopefully solve your issue. I’m guessing in your
register_sidebar
call in your functions.php, there wasn’t any content in the$before_title
variable. Now the plugin will see there is no content and add default header tags with custom classes.Thanks
Forum: Plugins
In reply to: [Text Widget with Class] Bug with the titelHey Viktor,
Sorry for the late reply, I didn’t get notification that you had a problem.
What theme are you using?
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Event widget not working POSSIBLE FIXHey Leah,
Got it working. I was offering up a possible solution to others having the issue. For me, it was having custom templates in my theme folder that must have been using outdated functions/hooks.
Forum: Plugins
In reply to: [The Events Calendar] Event widget not working since last update@esmi It’s the same issue as the first two posters. It would seem foolish to create a topic about the exact same issue.
Forum: Plugins
In reply to: [The Events Calendar] Event widget not working since last updateI’m also having the same issue. The widget is showing the page title you are viewing with the time you are viewing. It’s quite strange.
Using version 3.6.1 and WP 3.9.1.
I don’t think it’s a plugin issue, but rather a theme issue. I’m still digging.