-
AuthorPosts
-
June 7, 2019 at 2:45 pm #1108270
Hi all,
My main ubermenu is super complicated and really doesn’t work on mobile so I’d like to display a different menu.
I’ve created a new theme location called Mobile but i can’t find the theme_location parameter in the mobile menu’s wp_nav_menu so I can call it.Where can I find…
wp_nav_menu( array( 'theme_location' => 'value to change' /* other settings */ ) );
Thanks
Tim
June 9, 2019 at 4:10 pm #1108590Hey TJ,
You can try the solution posted here:
https://kriesi.at/support/topic/multiple-menus/If you need further assistance please let us know.
Best regards,
VictoriaJune 11, 2019 at 6:09 pm #1109235Hi,
That link works for displaying a different menu somewhere on the page, why didn’t they just use the sub-menu element?
I want to change the mobile menu call so a different menu is displayed in reference to this post.
Show my ubermenu unless on mobile then display another.
Thanks
Tim
June 13, 2019 at 7:58 am #1109786Hi,
Have you tried the following method:
https://kriesi.at/support/topic/different-menu-on-mobile-view/
Best regards,
Jordan ShannonJune 25, 2019 at 6:08 pm #1113319Hi all,
My main menu is a heavy customised Ubermenu with images, icons, description none of which look right on mobile. Yes i could use css to completely restyle the menu and hide things and show other things but a neater way would be to output a different menu on mobile. A simpler and more mobile friendly one with less menu items.
The following code
if ( wp_is_mobile() ) { wp_nav_menu( array( 'theme_location' => 'mobile-menu' ) ); }
does half a job. It adds an extra menu above the header on mobile. I need to know where the call is made for the menu that appears in the buger menu so i can replace that.
Thanks
Tim
June 27, 2019 at 6:31 am #1113802 -
AuthorPosts
- You must be logged in to reply to this topic.