Hi there @fortgordonmwr,
Thanks for reaching out to us! I’ll help you out figuring this one out…
Short answer is NO, long answer is YES, it’s possible to customize the calendar queries. If you would like to investigate a bit more on this, you can hook into tribe_events_pre_get_posts action and modify there query. I’ll leave a code sample to inspect the query below:
add_action( 'tribe_events_pre_get_posts', 'modify_events_query' );
function modify_events_query( $query ) {
var_dump( $query );
return $query;
}
Please let me know if you are willing to take a chance at this,
Best,
Nico