Snippet: Remove “Shop” From The Breadcrumbs
// Remove shop from breadcrumbs trail
function my_remove_shop_from_breadcrumbs( $trail ) {
unset( $trail['shop'] );
return $trail;
}
add_filter( 'wpex_breadcrumbs_trail', 'my_remove_shop_from_breadcrumbs', 20 );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend WPCode)