vovachampion
Forum Replies Created
-
Looks like it fixed with new WP https://core.trac.www.ads-software.com/ticket/62337
Hi @inkulte
I have the same issue and I don’t have this plugin. I believe that new version of WP 6.7 started causing this problem for many users regardless of the plugin. Check this https://developer.woocommerce.com/2024/11/11/developer-advisory-translation-loading-changes-in-wordpress-6-7/
I didn’t try yet, I just revert my WP to version 6.6.2 for now@andreparent1960? I have the same issue and I don’t have this plugin neither. I believe that new version of WP 6.7 started causing this problem for many users regardless of the plugin
the same here ??
Forum: Plugins
In reply to: [Yoast SEO] Title and Meta description not updatingHave the same issue with staging site. @alexdx how do go via “SEO data optimization is disabled for non-production environments.”?
I need to update it! But before do that on production, I want to try it first on stagingThanks!
Forum: Plugins
In reply to: [Yoast SEO] How to disable WebPage schema?or this?
add_filter( 'wpseo_schema_graph_pieces', 'remove_webpage_from_schema', 11, 2 ); function remove_webpage_from_schema( $pieces, $context ) { return \array_filter( $pieces, function( $piece ) { return ! $piece instanceof \Yoast\WP\SEO\Generators\Schema\WebPage; } ); }
- This reply was modified 1 year, 4 months ago by vovachampion.
- This reply was modified 1 year, 4 months ago by vovachampion.
Forum: Plugins
In reply to: [Yoast SEO] How to disable WebPage schema?Thanks for answer @maybellyne!
If I understand correctly, it is enough to add, right?add_filter( 'wpseo_schema_webpage', '__return_false' );