Remove WooCommerce Breadcrumbs in WordPress
add_action('template_redirect', 'remove_shop_breadcrumbs' );
function remove_shop_breadcrumbs(){
if (is_shop())
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
}
OR
if(is_shop()){ ... } // shop page
if(is_front_page() ){ ... } // static front page
if(is_home()){ ... } // default page
OR
remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
Comments
Post a Comment