Custom breadcrumbs

Posted in: Newspaper
Post count: 82

Hi,

Can you help me with deleting the tag base from breadcrumbs?
https://porady.org/dziecko

https://imgur.com/4SXS4Hy

Now is: Porady.org > Porady > Dziecko
What i need is: Porady.org > Dziecko (the same as at category page)

I have a child theme but i cannot find function which is responsible for that.

Post count: 23312

Hello Sirius Pro,

Please notice that’s the normal theme’s behavior, as you can see on our demo preview here -> https://www.screencast.com/t/UrOCP8faJCIR Also, if you want to hide this, you should use the code below and place it in Theme panel -> Custom CSS area.

The code is ->

.td-crumb-container span:nth-child(3){
display:none;
}
.td-crumb-container i:nth-child(2){
display:none;
}

The result is here -> https://www.screencast.com/t/ZHfsJ8nJb

Hope this helps!

Thanks.

Post count: 82

As always your are great support ! 🙂

Post count: 82

Can we limit this css to the tag page only? Now it cut bradcrumb of category

Post count: 23312

Hello Sirius Pro,

If you want to target only the TAG page you should add the .tag class in front of your above code.

.tag .td-crumb-container span:nth-child(3){
display:none;
}
.tag .td-crumb-container i:nth-child(2){
display:none;
}

Thanks.

Post count: 82

Works great!

Post count: 82

Can you tell me how can i also remove a category name from breadcrumb of post?

https://porady.org/bol-kregoslupa-ledzwiowego-jak-sobie-z-nim-poradzic

Post count: 82

Closed!

Viewing 8 posts - 1 through 8 (of 8 total)
The forum ‘Newspaper’ is closed to new topics and replies.