First of all, thanks for calling our product “fabulous” βΒ welcome to the forums! π
You can indeed change the amount of “related events” that are pulled into the Related Events sections on your site, but it will unfortunately require a bit of custom at this time π
To change the amount of events, head to your theme’s functions.php file and add some code like this somewhere in that file:
if ( function_exists( 'tribe_get_events' ) ) {
add_filter( 'tribe_related_posts_args', 'tribe_support_1022557' );
function tribe_support_1022557( $args ) {
$args['posts_per_page'] = 5;
return $args;
}
}
That’ll increase the number to 5, but change it to any number you’d like and it should do the trick! π
Cheers,
George