Tomas Tambrauskas
Tomas Tambrauskas

Reputation: 1

How do I remove "shop" from Astra Breadcrumbs?

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

Answers (1)

alireza
alireza

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

Related Questions