WooCommerce has build in breadcrumbs for the WooCommerce related pages, but it doesn’t affect other non-WooCommerce pages. Maybe you already have a different breadcrumb solution setup and want to remove the default WooCommerce breadcrumbs; thats where this post is for.
Removing Breadcrumbs
The breadcrumbs in WooCommerce can be removed with a simple one line code snippet. The below snippet can be implemented to your site, most easily through your child theme’s functions.php file.
Sweet! This worked really well, was looking all over the net for a simple solution and you delivered.
FINALLY THIS ONE WORKED I SPENT LIKE 15 MINS GOOGLING TILL I GOT HERE LOVE YOU MAN
Appearance > Custom CSS
.woocommerce-breadcrumb {
visibility:hidden;
}
wow still working! thanx a lot!