I have just found your theme and think it is great. However, unfortunately on my site the breadcrumb links always appear as "Home" above the content no matter which page you are on. If I go to the about page, for example, it remains the same. On your site it works well and says "Home | About me". I have tried to modify some settings without success.

Thank you in advance for any help.

Comments

anewman1980’s picture

Update: if I go to for example forums -> general discussion -> forum post, then the breadcrumbs section will show "Home | Forums | General discussion" and "forum post" will be displayed underneath. So they are working, but not for first level links like "about", "contact" etc.

DonnyCarette’s picture

Hi,

My site is still running on Drupal 6 with the menu breadcrumb module.
Drupal 7 does now support the breadcrumb menu items. But it will only show the title inside the breadcrumb if the node also contains a menu link.

DonnyCarette’s picture

Status: Active » Closed (works as designed)
davidbutler’s picture

How to disable completely the use of breadcrumbs?

Thank you.

DonnyCarette’s picture

For removing the breadcrumbs you'll need to open page.tpl.php and remove the following code:

<?php if (!empty($breadcrumb)): ?>
  <div id="breadcrumb">
    <?php print $breadcrumb; ?>
    </div>
<?php endif; ?>
davidbutler’s picture

Thank you Kindly!