Closed (fixed)
Project:
litejazz
Version:
6.x-1.7
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Oct 2008 at 00:24 UTC
Updated:
4 Oct 2011 at 08:04 UTC
Is anyone using Secondary menu?
I just moved something there and don 't see it, but I do get part of a black bar and would like to see one being used to see if I did someth8ng wrong.
Comments
Comment #1
roopletheme commentedWorks correctly as long as you're not using the suckerfish menu... read the handbook: http://demo.roopletheme.com/litejazz/22-using-primary-links-menu
Comment #2
mrtoner commentedThat would be a great answer, roopletheme, if the OP was asking about the primary menu links. However, he was asking about secondary menu links, which you managed to provide incomplete support for.
To enable secondary links, this line in page.tpl.php:
<div id="secondary" class="clear-block"> <?php print theme('menu_links', $secondary_links); ?> </div>needs to be changed to
<div id="secondary" class="clear-block"> <?php print theme('menu_tree', menu_tree('secondary-links')); ?> </div>Marking this as a bug (not that it will ever be fixed).
Comment #3
mrtoner commentedWhoops, I was just emulating the primary links code. However, as already pointed out by peterx in #321205: XHTML and CSS not validating, an error there causes an extraneous nested <ul>. This should be
<div id="secondary" class="clear-block"> <?php print menu_tree('secondary-links'); ?> </div>Comment #4
kisugiai commentedtry the actual dev version or use the patch from http://drupal.org/node/746972 this patch include the secondary menu issue