Comment supprimer le fil d’Ariane WooCommerce dans WordPress
<?php
add_action('template_redirect', 'remove_shop_breadcrumbs' );
function remove_shop_breadcrumbs(){
if (is_shop())
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
}
?>