Hi,

I'm trying to get the Menu Access module working on my Basic based theme. The module requires the use of the adapted menu blocks provided with the module (called 'Menu Access - Primary links' etc) for it to work.

My problem is I want to get this working in the navigation div, not in a block.

The maintainer for Menu Access gives as instruction: "If you have a custom theme you can integrate the menu by calling menu_access_menu_tree('primary-links') where the unique computer name of the menu is your custom menu."

How would I achieve this in Basic?

Comments

SteveK’s picture

Status: Active » Needs review

You can take a look in the page.tpl.php. and replace the line with:

<?php if (!empty($primary_links)){ print theme('links', $primary_links, array('id' => 'primary', 'class' => 'links main-menu')); } ?>

with:

  <?php print menu_access_menu_tree('primary-links'); ?>

I'm not too familiar with Menu Access, but I'm assuming that the menu_access_menu_tree() function returns a themed result.

damiankloip’s picture

Status: Needs review » Fixed

I would say that's how that issue is resolved. No other response to say otherwise.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.