Hi Janine
I did some more investigating into this.
We deliberately disallow multiple inclusions of the [tribe_events] shortcode. Some page builders render it once, early, for some reason – possibly to gather info – and again later, this time to actually display it within the page.
A use at your own risk workaround can be found though. Add this snippet to either your child theme’s functions.php file or use the My Custom Functions plugin.Â
add_action( 'init', function() {
add_shortcode( 'tribe_events', function( $atts ) {
$shortcode = new Tribe__Events__Pro__Shortcodes__Tribe_Events( $atts );
return $shortcode->output();
} );
}, 100 );
Thanks
Courtney 🙂