No doubt, this is the best distro of Drupal that I have seen. With all the crucial elements that publishers need and many that we never knew we should have, you folks have done a kick-ass job.

Now for my issue. I am trying to show a 2nd tier (more if possible) of menus (suckerfish style). I know @irakli gave some feedback here, http://drupal.org/node/497904 however I am not sure how to work a nicemenu block into the location where the current menu is.

Ideally, I'd love to have a menu like @adamsohn's http://thetriton.com/. He rocked it!

Here's my site with the single tier of menus:
http://v2.litennismag.com/

Attached is the menus screenshot.

Thanks in advance for your advice.

CommentFileSizeAuthor
menuissue.png279.48 KBandrewtberman

Comments

irakli’s picture

Thank you for your kind words.

The code for primary-links is under your theme folder in page/page.header.inc file. Approximately, lines: 43-50, something like:

 <div id="nav">
    <?php if (isset($primary_links)) : ?>
      <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
    <?php endif; ?>
    <?php if (isset($secondary_links)) : ?>
      <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
    <?php endif; ?>
  </div> <!-- /#nav -->

Since it uses $primary_links variable, I think it should just work with the nice_menu module (but, I have not tested recently).

Also, this sounds useful and common enough that it could be a good feature to just include in one of the next releases. I don't see why not. Not sure if we will use nicemenu module, but this certainly has come up frequently enough to consider as a feature.

Thank you.

andrewtberman’s picture

So how would I work in the nice menu functionality?

irakli’s picture

Status: Active » Fixed
Adam S’s picture

@andrewtberman Thanks for the one up.

I finally got 1.6 installed on my server. I'm going to try to build a two tiered dynamic menu for OpenPublish using http://drupal.org/project/node_breadcrumb and http://drupal.org/project/dynamic_persistent_menu that takes it step forward from what I allready have and emulates the active menu trail like on http://www.latimes.com/.

Status: Fixed » Closed (fixed)
Issue tags: -menu, -suckerfish

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