Removing breadcrumb links

Events happening in the community are now at Drupal community events on www.drupal.org.
Citizen's picture

Does anybody know how to remove the breadcrumb links at the top of pages? I don't see where there's an option to disable.

Thanks in advance for any help.

Comments

I believe its in the

betovarg's picture

I believe its in the page.tlp.php template like this:

<?php
print $breadcrumb;
?>

Hope this helps.

Or use CSS

GreenSkunk's picture

Or use CSS, example .breadcrumb {display:none;}

It is a damn poor day when you don't learn something.

I think that it is...

graham leach's picture

Hello,

I think this is a great way to non-destructively make this entire feature go away. Just place this at the end of your theme style.css (or equivalent):

/**
* @file
* style.css
*
* GL  2022-05-02  Remove breadcrumb from top of page as it is confusing
*                 for people when running a multi-lingual site with
*                 two taxonomies because ubercart catalog does
*                 not play well with multi-lingual sites
*
*/
.breadcrumb {
  display: none;
}

But if you want breadcrumbs to only partially go away, uncheck the Display the catalog breadcrumb checkbox in ubercart catalog under:

admin/store/settings/catalog

And it will leave a partial breadcrumb in place.

I think the css approach is

betovarg's picture

I think the css approach is not that elegant of a solution. If you dont need it you better remove it from the page.tlp.php.

Thanks ...

Citizen's picture

... I just edited the page.tpl.php file. It looks like that did the trick.

OpenPublish

Group organizers

Group categories

Group notifications

This group offers an RSS feed. Or subscribe to these personalized, sitewide feeds:

Hot content this week