I have switched off the breadcrums in the enfold panel for the whole website
I there a css code to make the breadcrumbs visible ONLY on the woocommerce shop pages?
Hi Gilbert,
I’m not sure if that would be possible but send us a link to your site and we’ll have a closer look at it.
Best regards,
Rikard
Hi!
Yes, it’s possible but you need change Title and Breadcrumbs header from Hide Both to Breadcrumbs only and add this in Quick CSS:
.empty_title.title_container {
display: none;
}
.woocommerce-page .empty_title.title_container {
display: block;
}
you might to clear cache for it to take effect, if it doesn’t work you may try this code instead:
.empty_title.title_container {
display: none !important;
}
.woocommerce-page .empty_title.title_container {
display: block !important;
}
Hope this helps :)
Cheers!
Nikko
thanxs Nikko.
it works flawless
Hi CelebrationEvents!
Glad we could help :)
Cheers!
Nikko