Hey Annette,
I’m sorry to disappoint! I’m also sorry for the delayed reply over the weekend.
By default, 100 events are queried for both single-venue pages and single-organizer pages.
These “limits” are dictated by the functions tribe_venue_upcoming_events() and tribe_organizer_upcoming_events(), respectively.
To modify these limits, you’d need to add code like the following to your theme’s functions.php file:
if ( function_exists( 'tribe_get_events' ) ) {
/**
* Modify how many events are "allowed" on single-venue and single-organizer pages.
* @link http://theeventscalendar.com/?p=1019251
*/
function tribe_support_1019251( $limit ) {
return 500;
}
add_filter( 'tribe_events_single_venue_posts_per_page', 'tribe_support_1019251' );
add_filter( 'tribe_events_single_organizer_posts_per_page', 'tribe_support_1019251' );
}
This code increases the limit to 500 – change this to any integer you’d like and it should work well.
Let me know if this helps!
Thanks,
George