Hi, In my case this was being caused by my out of date child theme theme-header (header.php). I’m still using the child theme version 1.3
It looks like CyberChimps moved the menu build call into a different file so there were two calls to build the menu including the one hardcoded in my old child theme header.php
I removed (or commented out) the following block of code near line 93 of the child theme header.php and it fixed this problem for me.
<?php get_sidebar( ‘top’ ); ?>
<?php wp_nav_menu( array(
‘container’ => ‘div’,
‘container_class’ => ‘main-nav’,
‘fallback_cb’ => ‘responsive_fallback_menu’,
‘theme_location’ => ‘header-menu’
)
);
?>
<?php if( has_nav_menu( ‘sub-header-menu’, ‘responsive’ ) ) { ?>
<?php wp_nav_menu( array(
‘container’ => ”,
‘menu_class’ => ‘sub-header-menu’,
‘theme_location’ => ‘sub-header-menu’
)
);
?>
<?php } ?>
Hope this helps.
Thanks. MM
-
This reply was modified 5 years, 3 months ago by webm22.