Hey @Micah,
Thanks for reaching out.
At this time, the only for admins to see all submitted events—regardless of author—is to log into the site’s wp-admin. There is not currently a way to do this on the front end.
You might have success by adding the following code snippet to your theme’s functions.php file:
function tribe_ce_show_all_in_my_events_list_if_admin( $args ) {
if ( empty( $args ) || ! is_array( $args ) ) {
return $args;
}
if ( current_user_can( 'administrator' ) ) {
$args['author'] = 0;
}
return $args;
}
add_action( 'tribe_ce_my_events_query', 'tribe_ce_show_all_in_my_events_list_if_admin' );
☝️ Try this out and let us know if it helps!
— George