We have a megamenu using the primary links. When we decided to disable some of the first level menu items and all their children, we noticed that the first level menu items were still showing up.

I probably can help if somebody give me a kick ;)

Comments

mlmoseley’s picture

I am having this same issue. I think I can fix it in CSS, but I shouldn't have to.

Megamenu version: "6.x-2.0-beta2"
Drupal: 6.24
Theme engine: Fusion

Any suggestions?

vrajak@gmail.com’s picture

Same issue here...very strange. Must be a bug? Didn't see anything in documentation/read me about this. Its making this module very difficult to use as I have a ton of disabled menu items on the menu I'm trying to use as mega.

Anonymous’s picture

Assigned: Unassigned » erykmynn
Issue tags: +review
karan.gshar’s picture

Had a same problem found solution at some other post, its just minute change in megamenu.utilities.inc

Line 58

change:
if ($tier1_item['link']['hidden'] == 1 || empty($tier_1_item['link']['link_title'])) {
unset($menutree[$tier1_key]);
}

to:
if ($tier_1_item['link']['hidden'] == 1 || empty($tier_1_item['link']['link_title'])) {
unset($menutree[$tier_1_key]);
}

David Stosik’s picture

Version: 6.x-2.0-beta2 » 6.x-2.x-dev
Status: Active » Fixed

This is fixed on 6.x-2.x-dev.

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