How to set up Mega menu horizontal
Last updated
Was this helpful?
Last updated
Was this helpful?
Step 1 - Simply, navigate to Appearance → Menu
Step 2 - Choose Main Menu and click Select button
Step 3 - Go to Shop (Our tutorial video shows an example with the menu item "SHOP"), You can do it similarly with other menus. Imagine that we have Shop and inside of it, we need to have four sub-menus. Click on Mega Menu and Full-Width option if you want to display the full-screen mega menu
Step 4 - Drag and drop to have 4 submenus
add_filter ('nasa_max_depth_main_menu','custom_max_depth_menu');
function custom_max_depth_menu ($depth) {
return 4; // Return max depth menu - Default is 3
}
/* ====================== */