Different menus in mobile and desktop

Home Forums Pro Support Different menus in mobile and desktop

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #68994
    William EliassonWilliam Eliasson
    Participant

    Hello!
    I would like to have different menus in mobile and desktop. Under initial setup you are only able to choose one menu to use.

    #68995
    Peter FeatherstonePeter Featherstone
    Participant

    Hey William,

    The plugin is a responsive plugin and is not specific to different devices.

    Having said that, technically it would be possible using the shortcode and the wp_is_mobile() function.

    Something like the below could work:

    <?php 
    
    if(wp_is_mobile()) {
       echo do_shortcode('[responsive_menu_pro menu_to_use="mobile-menu"]');
    } else {
       echo do_shortcode('[responsive_menu_pro menu_to_use="desktop-menu"]');
    }
    ?>

    Of course you will need to change the menu slugs above to match your own.

    All the best

    Peter

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Different menus in mobile and desktop’ is closed to new replies.