emiliopro
Forum Replies Created
-
Could there be a regression in 3.2.2?
Because I’m encountering exactly the same using the latest version.Forum: Plugins
In reply to: [Beautiful taxonomy filters] Update 2.3.7You are correct. I was testing in a multisite environment, so my prefix was wp_4_.
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Update 2.3.7The conditional dropdowns didn’t work at all. When changing a value in the first drowndown, the spinners spin, but the second one is updated. Alle values are still available and when you select a non-existing value you get redirected to an empty archive page (which is correct behavior of course).
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Update 2.3.7@jonathandejong I tried the 2.4 beta, and it fixed my permalinks problems. On the downside: the conditional menu’s stopped working, Not sure if the 2 are related, tho.
I’ll might find some time later this week to do some more extensive testing on the permalinks issue. For now I downgraded tot 2.3.1 to the conditional menu working.Forum: Plugins
In reply to: [Beautiful taxonomy filters] Update 2.3.7Sure!
You can reach me at [email protected]Forum: Plugins
In reply to: [Intuitive Custom Post Order] Conflict with YOAST SEO?Great fix!
Hopefully @hijir can incorporate it in a next release.Forum: Plugins
In reply to: [Intuitive Custom Post Order] Issues with Yoast SEO on MultisiteHi @mattzn,
I came across the same problem. It has to do with the switch blog function on line 737. The function
switch_to_blog($current);
should be
restore_current_blog();
I suggested a fix on github:
https://github.com/hijiriworld/intuitive-custom-post-order/pull/22Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] No srcset?Thx for this trick, @ze3kr.
I also noticed that the srcset images were loaded from the local uploads-folder instead of the google bucket.
I created a quick fix (for my multisite setup, hence the $blog_id):function stateless_cdn_srcset($sources){ if (is_plugin_active( 'wp-stateless/wp-stateless-media.php' )) { foreach ( $sources as $source ) { $sources[ $source['value'] ][ 'url' ] = str_replace($uploads, 'https://storage.googleapis.com/'. $bucket . '/' . $blog_id . '/', $sources[ $source['value'] ][ 'url' ]); } } return $sources; } add_filter( 'wp_calculate_image_srcset', 'stateless_cdn_srcset');
Cheers!