How to remove All products link and the product name in yoast breadcrumbs
-
Is there any way I can remove the post title just like above and also remove the All products text which is linking to shop now.
Right now mine looks like this
Home>All products > category1>category2>itemHowever, I want it to look like this
eg: Home> category1 > category 2
It worked before with the older yoast versions with the following code
/*
* Remove a link from the Yoast SEO breadcrumbs
* Credit: https://timersys.com/remove-link-yoast-breadcrumbs/
* Last Tested: Mar 12 2017 using Yoast SEO 4.4 on WordPress 4.7.3
*/add_filter( ‘wpseo_breadcrumb_single_link’ ,’wpseo_remove_breadcrumb_link’, 10 ,2);
function wpseo_remove_breadcrumb_link( $link_output , $link ){
$text_to_remove = ‘Products’;if( $link[‘text’] == $text_to_remove ) {
$link_output = ”;
}return $link_output;
}But now it stopped working even when I tried to change the text to All products from products.
Thanks
- The topic ‘How to remove All products link and the product name in yoast breadcrumbs’ is closed to new replies.