Lambda
Mega Menu settings inaccessible for newly added items
By default, Lambda saves the menu structure using AJAX. This will stop the menu page from refreshing during the menu save process, and in turn stop Max Mega Menu from being able to detect that the menu structure has been updated.
To fix this, set “Save Menus Using Ajax” to “Off” in the theme settings.
Primary Menu
Lambda does not include the ‘theme_location’ parameter when outputting a menu using the wp_nav_menu() function (a requirement for Max Mega Menu to work).
To restore the theme_location parameter, please add the following to your themes functions.php file.
1 2 3 4 5 6 7 8 |
function megamenu_add_theme_location($args) { if (!isset($args['theme_location']) || $args['theme_location'] == "") { $args['theme_location'] = 'primary'; } return $args; } add_filter('wp_nav_menu_args', 'megamenu_add_theme_location'); |
Mobile Menu Setup
Go to Mega Menu > Menu Themes. In the Mobile section, set the following:
Responsive Breakpoint: 991px
Disable Mobile Toggle: checked