Hide Breadcrumbs from tag, search etc. pages

Posted in: Newsmag
Post count: 45

Hi,

How I can hide breadcrumbs in pages like search, tag etc.?

thank you!

Post count: 23312

Hello deambris,

You should use a bit of CSS code to hide this. Provide your website URL and show me what kind of breadcrumbs you want to hide so I will be able to provide a more accurate response.

Thanks.

Post count: 45
Post count: 23312

Hello deambris,

Try the code below and place it in Theme panel -> Custom CSS area.

The code is ->

.search-results .entry-crumbs{
display:none;
}

Hope this helps!

Thanks for your understanding!

Post count: 45

Thank you and for tag page?

Post count: 23312

Hi,

Try using the code below ->

.entry-title.td-page-title{
display:none;
}

Thanks.

Post count: 45

In this way it hides page title, but it doesn’t hide breadcrumbs

View post on imgur.com

  • This reply was modified 8 years by deambris.
Post count: 23312

Hello,

Try to use the code below ->

.td-crumb-container{
display:none;
}

Thanks.

Post count: 45

Sorry, it doesn’t work

View post on imgur.com

Post count: 23312

Hello,

Try the code below and place it in Theme panel -> Custom CSS Area.

.entry-crumbs{
display:none!important;
}

Hope this helps!

Thanks.

Post count: 45

it works, but also for single posts. I’d like to hide breadcrumbs only in tag and search pages.

Post count: 23312

Hello deambris,

If you want that code to be applied only to tag and search pages, notice that you should add in front of your code the tag and search class, as below.

.search .entry-crumbs{
display:none!important;
}

.tag .entry-crumbs{
display:none!important;
}

Thanks for your understanding!

Post count: 45

Now it works.

Thank you, tagdiv is the best!

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