"Add New Topic" button goes missing from the forum when blogbuzz II is displayed theme. Button comes back when a different theme is displayed. I'm using drupal 7.8. problem persists when all contributed modules are disabled.

Comments

barrya’s picture

Had a similar issue on the create content type page.

It was down to missing $action_links.

I added the following just after the tabs bit in page.tpl.php


<?php if ($action_links): ?>
     <ul class="action-links">
     <?php print render($action_links); ?>
     </ul>
<?php endif; ?>

I've noticed this as the cause in several themes, and is always the first thing I check now if I am missing any links on a site I am working on.