This one is easy. Add this code to your functions.php file. /** * Remove WooCommerce breadcrumbs */ add_action( 'init', 'my_remove_breadcrumbs' ); function my_remove_breadcrumbs() { remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); }
Comments
Post a Comment