Hi there @wheretogokiddo,
Thanks for getting in touch with us! I can help you here…
Default limit for events in venue pages is 100, although you can modify this with the following code:
/* Tribe, limit events in single venue pages */
add_filter( 'tribe_events_single_venue_posts_per_page', function (){ return 10; } );
Place the code above in your theme’s (or child theme’s) functions.php file and it will change the limit. Please note that this won’t generate pagination, it will just limit the max of events shown.
If you intention is to have a ‘show all option’ it can be added via JS (hide/show event divs) or by creating a link to the same page with a query string to ignore the new limit.
Please let me know if this helps,
Best,
Nico