Hi there
Have just updated my theme to the latest version and all breadcrumbs have stopped working.
Thanks!
Hi there
Have just updated my theme to the latest version and all breadcrumbs have stopped working.
Thanks!
Hello @SEVERO,
I have checked your site and it looks like you have added some custom CSS that causes the breadcrumbs not to display.
Please check the Global CSS and find this block of code:
.blog .x-breadcrumbs :nth-child(2), .blog .x-breadcrumbs :nth-child(3), .archive .x-breadcrumbs :nth-child(2), .archive .x-breadcrumbs :nth-child(3), .single-post .x-breadcrumbs :nth-child(2), .single-post .x-breadcrumbs :nth-child(3) {
display: none;
}
You may delete that code and the breadcrumbs should display again.
Hope this helps.
Hi there, that seemed to work but now I have “the blog” in the breadcrumb trail. How do I go about removing that?
THE BLOG > BAUER LAYS OFF 140 IN OZ
Cheers
Hi @SEVERO,
You can use custom CSS to hide it again. Previous CSS is not working correctly. Since that is a post page, you need to use the .single-post selector. Since THE BLOG is the second link, you will add this selector .x-breadcrumbs :nth-child(2) like below:
.single-post .x-breadcrumbs :nth-child(2) {
display: none;
}
Here’s your guide on how to get correct selector:
Note that I give the guide and explain. Further CSS changes is outside the scope of our support. Thank you for understanding.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.