I'm unsure if this is a bug, a feature, or a personal problem. ;)

I was seeing multiple breadcrumbs when navigating into forums, blogs and acidfree albums. One small set directly below the Primary Links, and another right below that in the node body. I'm a bit of a hack in this regard, but my fix: removed line 142 in page.tpl.php

 <?php if ($breadcrumb): ?><?php print $breadcrumb; ?><?php endif; ?>

Comments

florian’s picture

Nether one :) The theme has double breadcrumbs by design. Because of the 1-3 regions under the navigation menu I have considered it is better to have 2 breadcrumbs. But you are right! Change the line to:

	<?php if ($section1count > 0): ?>
		<?php if ($breadcrumb): ?><?php print $breadcrumb; ?><?php endif; ?>
	<?php endif; ?>

... and the second breadcrumb will be available only when regions above are in use. I will update CVS also.

florian’s picture

Status: Active » Closed (fixed)
florian’s picture

Status: Closed (fixed) » Fixed
florian’s picture

Status: Fixed » Closed (fixed)