Reputation: 1
I use Astra WordPress theme and on the shop page I see: Home/Products/Shop
Is there any way to remove the "shop" by using action hooks? I have tried various filters but nothing seems to work.
By the way, I can't simply hide the last trail item since breadcrumbs are correct on other pages.
I tried various filters and actions, I have also tried contacting Astra Support
Upvotes: 0
Views: 388
Reputation: 1
Maybe you can hide it by adding some CSS. To do so, first detect the class of the part you do not want to see (Home/Products/Shop
), then use the following CSS code to get rid of that:
.your-detected-class{display: non;}
Upvotes: 0