How do I remove "shop" from Astra Breadcrumbs?

140 views Asked by At

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

1

There are 1 answers

0
alireza On

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;}