Posted by Citizen on April 13, 2011 at 3:45am
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.
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
I believe its in the page.tlp.php template like this:
<?phpprint $breadcrumb;
?>
Hope this helps.
Or use CSS
Or use CSS, example
.breadcrumb {display:none;}It is a damn poor day when you don't learn something.
I think that it is...
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/catalogAnd it will leave a partial breadcrumb in place.
I think the css approach is
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 ...
... I just edited the page.tpl.php file. It looks like that did the trick.