Mega menu broken

Posted in: Newspaper
Post count: 51

Hi.

I cutomizeed mobile menu.

I want to use different menu for mobile. But I do not want to use mobile theme.

I added script in functions.php as follows.

register_nav_menus(
array(
‘mobileheadnav’ => ‘mobile-head-menu’
)
);

and changeded in menu-mobile.php like that…

wp_nav_menu(array(
‘theme_location’ => ‘mobileheadnav’,
‘menu_class’=> ‘td-mobile-main-menu’,
‘fallback_cb’ => ‘td_wp_no_mobile_menu’,
‘link_after’ => ‘<i class=”td-icon-menu-right td-element-after”></i>’,
‘walker’ => new td_walker_mobile_menu()
));

after that, mobile menu works well, but mega menu broken like that.

null

Please tell me how to fix it.

Post count: 22421

Hi,
Please revert your changes to the theme default as there is a much simpler way to do it.
Simply define a new menu in td_menu.php like so: http://screencast.com/t/u3Ym64v3Ga and then simply change the menu key in menu-mobile.php to your new menu like so: http://screencast.com/t/guO9j6To89m
Now you can create a new menu and assign it as a mobile menu from the wp menus area.
Thank you!

Post count: 51

Hi.

I fixed it. work fine. Thank you.

But mobile theme location does not appear manege locations page.
But original menu for mobile is linked a menu I made.
strange…

Post count: 22421

Hi,
I just did the modification again to test it and the locations panel shows the new mobile menu : http://screencast.com/t/P46tEvQGWXjB
Please make sure you customized the code properly.
Thank you!

Post count: 51

Perfect working! Arigatou. Thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.