Hello robertstaddon,
Thanks for contacting us! I agree that can be a bit distracting! I’ll talk to the devs to see if that was intentional.
In the mean time, this forum post should point you in the right direction https://theeventscalendar.com/support/forums/topic/hide-events-submenu/
Unfortunately that level of customization typically goes beyond the scope of the forums. However, I think I was able to figure it out pretty quickly. If you put this code in your theme’s functions.php file, it should do what you are looking for. I tested it and it seems to work.
function tw_remove_menu_pages() {
if ( current_user_can( ‘administrator’ ) ) return;
remove_menu_page( ‘edit.php?post_type=tribe_events’ );
}
add_action( ‘admin_menu’, ‘tw_remove_menu_pages’, 999 );
Does this make sense? Let me know if this doesn’t work for you.
Cheers!
– Casey Driscoll