• Resolved shamratdewan

    (@shamratdewan)


    Hi, i am using your mobile menu on my site. where i have to select a menu to be used in mobile phones. is it possible to use page specific menu as i need to show a diffrent menu for some of the pages on the mobile phone.
    can i use or what should be the code to change the menu on specific page, sample code i tried does not work on this plugin:

    add_filter( 'wp_nav_menu_args', 'immigration_menu' );
    
    function immigration_menu( $args = '') {
    
                    // change the menu in the Header menu position
    
                    if( $args['theme_location'] == 'header' && is_page(array('10862','86')) ) {
    
                                    $args['menu'] = '158'; // 32 is the ID of the menu we want to use here
    
                    }
    
                    return $args;
    
    }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘change mbile menu on specific page’ is closed to new replies.