By jerrac on
I would like to place the breadcrumbs in the forum footer so that when a person is done reading a topic, they can just click back to the topic list. Or they can click back from the topic list to the main forum page.
In page.tpl.php I tried placing
<div id="content-header">
<?php if ($forums_defined){ print $breadcrumb; }print $breadcrumb;?>
</div>
After:
<div id="content-area">
<?php print $content; ?>
</div>
That's around line 168 in the page.tpl.php file that comes with the Zen theme.
The print outside the if statement works fine. It places the breadcrumbs on every page of my site. I'd like it to only be on the forum pages. How can I do that?