Header/Primary Links Dissapear when your not on a page that is one of those links. Is there anyway to stop this happening? I can't add all my pages as a link but users need to be able to use them as the sidebar is disabled.

Thanks
Microbe

Comments

Microbe’s picture

Status: Active » Fixed

Oops I posted two reports by accident. Is there anyway to delete one of them?

I found the answer after an intense session of fiddling.
To fix the problem change

      <!-- Navigation items -->
          <?php if (isset($secondary_links)) {
            // build two level menu for secondary links
            //TODO: there will almost certainly be an IE6/IE7 problem with          <-- this bit i have also fixed see another issue
            // these menus... see the original template on how to fix
            $msm = variable_get('menu_secondary_menu', 0);
            print theme('menu_tree', $msm);
          } ?>

to:

<!-- Navigation items -->
          <?php
            $msm = variable_get('menu_secondary_menu', 0);
            print theme('menu_tree', $msm);
           ?>
Anonymous’s picture

Status: Fixed » Closed (fixed)