iPascalCase
11/12/2017 - 12:41 AM

remove woocommerce default breadcrumb

place the below code in functions.php to remove the breadcrumb

add_action( 'init', 'the_name_of_function');
function the_name_of_function() {
  remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
}