Hi all,
After much testing we found out what the issues is.
We used this code in our theme functions file to display an intro to just the month view on the calender.
add_action( ‘tribe_events_before_html’, ‘custom_events_before_html’ );
function custom_events_before_html() {
// Check if displaying month view
if ( tribe_is_month() ) {
echo ‘Your text goes here!’;
}
}
We have now removed this code and hard coded our into into our own theme template for the month view and both the top and bottom navigation works as should do.
I hope this helps others
Tristan