A simple, powerful and independent e-commerce platform.
Sell anything with ease.

Remove breadcrumbs

You can remove the breadcrumbs from your store with this code.

		/**
 * Remove breadcrumbs
 */

add_action('init', 'cc_remove_breadcrumbs');

function cc_remove_breadcrumbs() {

  remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);

}
	
View Raw Code ID: 91117