Hi,
I have added the fix to your child theme functions.php
file. I was not sure what your server address was for the staging URL.
/* MEGA MENU - OVERRIDE MAIN MENU
================================================== */
if ( !function_exists( 'nota_max_mega_menu_page_menu_args' ) ) {
function nota_max_mega_menu_page_menu_args( $args, $menu_id, $current_theme_location ) {
$new_args = array();
if ( is_singular() && isset( $current_theme_location ) && $current_theme_location == "main_navigation" ) {
global $post;
$page_menu = "";
if ( $post ) {
$page_menu = nota_get_post_meta($post->ID, 'sf_page_menu', true);
}
if ( $page_menu != "" ) {
$new_args['menu'] = $page_menu;
return $new_args;
} else {
return $args;
}
} else {
return $args;
}
}
add_filter( 'megamenu_nav_menu_args', 'nota_max_mega_menu_page_menu_args', 10, 3 );
}