Remove the /shop/ page from a woocommerce product breadcrumbs
-
Hi,
I am looking for a solution to remove the /shop/ page from the bradcrumbs that yoast exports.
Do you have any solution so I can remove the shop page from the breadcrumbs and leave only Homepage > Category > Child category > product ?
i have use this
add_filter(‘wpseo_breadcrumb_single_link’ ,’remove_shop’, 10 ,2);
function remove_shop($link_output, $link ){
if( $link[‘text’] == ‘Products’ ) {
$link_output = ”;
}
return $link_output;
}But it does not working
Whatever i try, yoast always puts shop between homepage and first category
Thank you
The page I need help with: [log in to see the link]
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Remove the /shop/ page from a woocommerce product breadcrumbs’ is closed to new replies.