• I have added this code to my Customizr theme to try and remove all woocommerce breadcrumbs but its not working. What is wrong?

    add_action('template_redirect', 'remove_shop_breadcrumbs' );
    function remove_shop_breadcrumbs(){
    
    	if (is_shop())
    		remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
    
    }
Viewing 1 replies (of 1 total)
  • Thread Starter Hatched in France

    (@hatched-in-france)

    I have found an alternative fix and removed breadcrumbs from my customizr theme instead. There was a simple tick box within customizr/customize/page post layouts to display breadcrumbs or not.

Viewing 1 replies (of 1 total)
  • The topic ‘Removing Woocommerce breadcrumb from Customizr theme’ is closed to new replies.