Closed (fixed)
Project:
Megamenu
Version:
6.x-2.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Issue tags:
Reporter:
Created:
23 Feb 2012 at 02:45 UTC
Updated:
4 Jan 2014 at 01:39 UTC
Jump to comment: Most recent
Comments
Comment #1
mlmoseley commentedI 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?
Comment #2
vrajak@gmail.com commentedSame 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.
Comment #3
Anonymous (not verified) commentedComment #4
karan.gshar commentedHad 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]);
}
Comment #5
David Stosik commentedThis is fixed on 6.x-2.x-dev.