I apologize in advance; I'm not a Drupal developer.

I use Drupal's core forums and I have breadcrumbs disabled, but I want them on my forums. I heard there's a way to get something like the following (in the example, the user is viewing a thread) with this module:

Forums main > Containers > Forum

I tried, but the whole thing is starting to overwhelm me. Any help would be appreciated.

- Melinda

Comments

MGN’s picture

How have you disabled the breadcrumbs?
Is it an option in your theme?
And what theme are you using?

If you have turned off breadcrumbs by modifying or eliminating the print $breadcrumb; code in page.tpl.php, then you'll need to adjust that code to be more selective. Something like

<?php if  (($node->type == 'forum') || (arg(0) == 'forum')) : ?>
<?php print $breadcrumb; ?>
<?php endif; ?>

will give you stock forum breadcrumbs only on the forum container and topic pages.

You don't really need custom breadcrumbs module to do this, unless you want something other than the default breadcrumb trail for forums (i.e. Home > Forums > Container > Forum in Drupal 6.x).

These pages are related:
http://drupal.org/node/46229
http://drupal.org/node/444888

MGN’s picture

Status: Active » Closed (fixed)

Closing because this issue is very old and I think the question was answered.