I use this code to remove “shop” from breadcrumbs.
__________________________________________________________________________________________________
add_filter( ‘wpseo_breadcrumb_single_link’, ‘wpseo_remove_breadcrumb_link’, 10 ,2);
function wpseo_remove_breadcrumb_link( $link_output , $links ){
$page_src = $links[‘url’];
$last_word = basename( $page_src );
$text_to_remove = ‘shop’;
if( $last_word == $text_to_remove ) {
$link_output = ”;
}
return $link_output;
}
___________________________________________________________________________________________
But it only works for 1 page. on page 2, deleting works, but gives an error.
Could you please suggest how to modify the code or can it be done with theme functions or Yoast?