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 create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...