16 January 2020

How to Remove WooCommerce Breadcrumbs in WordPress?

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);

No comments:

Post a Comment

How to add re-captcha v3 on all Elementor forms using coding?

 Add re-captcha v3 on all Elementor forms using coding add_action('wp_footer',function(){     ?> <script src="https://www...