Weird file path on brand shop pages
-
Hey, I have a weird path on brand shop pages:
https://prnt.sc/pqcnlk
Basically says “product brand brandname”
Is there ways to edit or fix that?
Kind Regards!
Hello,
If you want to hide those breadcrumbs which shows the brand name and shop path on your shop page you can use the below CSS code in Theme Settings >> Custom CSS >> Global Custom CSS:
.shop-loop-head .woodmart-woo-breadcrumbs{
visibility: hidden;
}
Best Regards.
Worked well! Can i do it on the product page as well?
http://prntscr.com/psyip4
Hello,
To hide those breadcrumbs from the product page also you can use the below CSS in Theme Settings >> Custom CSS >> Global Custom CSS:
.single-product .woocommerce-breadcrumb {
display:none;
}
Best Regards.