#1447543

Hi,
To show a different menu on one specific page, first make the menu that you wish and hover over the Delete Menu link and at the bottom of the page your browser should show the source of the link, looks for &menu=XX the XX will be a number, in my example it is 11
Enfold Support 6013
Next we need to know the page ID, so hover over the admin menu Edit Page in the admin toolbar, and at the bottom the browser should show the source link, look for ?post=XX again the XX will be a number, in my example it is 3792
Enfold Support 6015
Now we will add this code to the end of your child theme functions.php file in Appearance ▸ Editor or if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
use wpcode php snippet and activate
and ensure that it is activated, then add this code and save.

add_filter( 'wp_nav_menu_args', 'ppen_nav_menu_args' );
function ppen_nav_menu_args( $args = '' ) {
if($args['theme_location'] === 'avia') {
if( is_page( 3792 ) ) {
$args['menu'] = '11';
}
return $args;
}
}

Now that page will have our new menu.

Best regards,
Mike