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. This doesn’t work because we don’t allow that.
A use at your own risk possible solution 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 🙂