Tagged: breadcrumbs, search
How do I remove breadcrumbs from search results? I’ve seen how to remove them from specific pages that have a Page ID, but I don’t think search results have a page ID.
The only other related thread I could find was this, which didn’t help.
https://kriesi.at/support/topic/remove-breadcrumbs-and-search-area-from-no-sidebar-template
Thanks!
yeah, is there any help on this?
Hi,
You can add this on your custom.css or Quick CSS
.search .breadcrumb.breadcrumbs.avia-breadcrumbs {
display: none;
}
Regards,
Ismael
Thanks Ismael, but that didn’t work for me. Any other thoughts or ideas?
Ok, I got it to work. The .search wasn’t needed, apparently.
.breadcrumb.breadcrumbs.avia-breadcrumbs {
display: none;
}
Worked for me.