The custom there we are using has two menus; ‘header’ and ‘footer’.
On every page of the site except events calendar pages they work fine. On the events calendar pages they do not appear at all.
Digging deeper into this issue …:
the function get_nav_menu_locations() gives the following results on all pages:
array(2) {
["header"]=>
int(3705)
["footer"]=>
int(114)
}
using the function wp_nav_menu( array('menu' => 3705, 'menu_class' => 'main-menu', 'theme_location' => 'header' ) ) on the non events calendar menu pages currectly pulls the menu, but on the events calendar pages we get nothing.
I’ve looked at the database and the ‘nav_menu’ taxomonmy relations all look correct as do the ‘nav_menu_item’ posts
Do you have any advice on how to get this working?