Hi there Glenn,
Thanks for getting in touch with us!
Hopefully we have a snippet to do this:
/*
* Checks the front-end box "Show only the first upcoming instance of recurring events" by default
*/
function tribe_subsequent_recurrence_default( $option, $name, $default ) {
if ( $name === 'hideSubsequentRecurrencesDefault' && ! is_admin() ) $option = true;
return $option;
}
add_filter( 'tribe_get_option', 'tribe_subsequent_recurrence_default', 10, 3 );
You’ll need to add the appropriate conditional for this to only affect the page with the shortcode!
Please let me know if you can customize it or if you still need help,
Best,
Nico