Primary links are missing with Drupal 6.1. If they work (older drupal version) they can't be deactivated.

Fix:
Replace this code in the page.tpl.php file:
<?php print theme('menu_links', $primary_links) ?>

With this one, it allows to deactivate the primary links too:

<?php if (isset($primary_links)) : ?>
          <?php print theme('links', $primary_links) ?>
<?php endif; ?>

Comments

jbc’s picture

This worked for me...but I'm still missing the slogan.

daniel sanchez’s picture

Also worked for me on 6.2. Thank you.

dex002’s picture

excellent theme, and thanks for the fix

Gurpartap Singh’s picture

Status: Needs review » Closed (duplicate)