woogists
3/11/2018 - 4:26 PM

[WooCommerce Core] Remove the breadcrumbs

[Frontend Snippets][Customize the WooCommerce breadcrumb] Remove the breadcrumbs

add_action( 'init', 'woo_remove_wc_breadcrumbs' );
function woo_remove_wc_breadcrumbs() {
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
}