Tim van Iersel
Forum Replies Created
-
Hi @nramki,
Now that we switched to RankMath with some sites we were able to reproduce this issue.
I’m going to create a fix for it in the next few days.
Cheers,
TimForum: Plugins
In reply to: [Remove Schema] Selective RemovalHi @sylvertech currently we only support removing all schema or if we know which theme / plugin is generating schema we remove all the schema from that plugin per page.
From the url that you’re using I can see that you’re using RankMath which has the ability to disable schema.
Forum: Plugins
In reply to: [Remove Schema] No removing product schema WC 4.3.3Forum: Plugins
In reply to: [Remove Schema] Remove Yoast Schema on a WordPress MultisiteForum: Plugins
In reply to: [Remove Schema] Remove Yoast Schema on a WordPress MultisiteHi @redalto,
The latest release should supports multisites. If you run in any issues please let me know.
Forum: Plugins
In reply to: [Remove Schema] Can I Just Remove the Yoast Schema?@redalto Just a quick update,
I’ve got a fix locally to support WordPress MultiSite environments. Creating a multi-site test environment later today to verify that those changes work correctly.
If everything works correctly the newest version of the plugin will be available tomorrow.
Forum: Plugins
In reply to: [Remove Schema] Can I Just Remove the Yoast Schema?Hi @redalto,
The plugin doesn’t support multi-site for now. I’ll look into supporting multi-sites later this week.
Cheers,
TimForum: Reviews
In reply to: [Remove Schema] Just what I needThank you for your kind review @tothpa. If there is anything we should add to the plugin, let us know!
Forum: Reviews
In reply to: [Remove Schema] ЗаепокThank you for your kind review @s1men If there is anything we should add to the plugin, let us know!
Forum: Reviews
In reply to: [Remove Schema] goodThank you for your kind review @sangbuiduc! If there is anything we should add to the plugin, let us know!
Forum: Reviews
In reply to: [Browser Tab Title Reminder] Nice little plugin@narubi great suggestion!, you can expect this feature in the plugin in the near future.
Thank you for your kind review @beeriz!
Forum: Plugins
In reply to: [Remove Schema] Can I Just Remove the Yoast Schema?@labarraca yes. If you only check the Yoast checkbox all other JSON LD schema will remain in place.
Forum: Plugins
In reply to: [Remove Schema] Yoast FAQ and How toStill looking for a better way to remove all schema except FAQ and HowTo’s.
A hack that you could try out for FAQ’s would be something like this:
add_filter( 'wpseo_schema_organization', '__return_false' ); add_filter( 'wpseo_schema_person', '__return_false' ); add_filter( 'wpseo_schema_website', '__return_false' ); add_filter( 'wpseo_schema_mainimage', '__return_false' ); add_filter( 'wpseo_schema_webpage', '__return_false' ); add_filter( 'wpseo_schema_author', '__return_false' ); add_filter( 'wpseo_schema_breadcrumb', '__return_false' ); add_filter( 'wpseo_schema_article', '__return_false' ); add_filter( 'wpseo_schema_faq', 'pluginnl_reformat_wpseo_faq' ); function pluginnl_reformat_wpseo_faq( $data ) { $data[0]['@type'] = 'FAQPage'; $data[0]['mainEntity'] = $data[0]['itemListElement']; unset($data[0]['mainEntityOfPage']); unset($data[0]['itemListElement']); unset($data[0]['numberOfItems']); return $data; }
Forum: Plugins
In reply to: [Disable Emojis (GDPR friendly)] What happens after unistall?After uninstalling the emojis will get reactivated. The plugin only disables some functions in WordPress as long as it’s active.