removing breadcrumb from Woocommerce
-
I’m trying to remove the breadcrumb from the Shop and product pages. I have checked the box in the Genesis theme customizer to not show breadcrumbs. I have added variations of the php code to remove the breadcrumbs, such as https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/ shows. I have this in my functions.php now, but the breadcrumbs are still taunting me. Help please!
// Remove breadcrumbs from shop & categories add_filter( 'woocommerce_before_main_content', 'remove_breadcrumbs'); function remove_breadcrumbs() { if(!is_product()) { remove_action( 'woocommerce_before_main_content','woocommerce_breadcrumb', 20, 0); } }
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘removing breadcrumb from Woocommerce’ is closed to new replies.