Hey @dcantato,
This configuration is unfortunately not possible at this time in any simple or straightforward way 🙁
If there are 20 events in the Map, they will show in the list view below it by default.
The only simple way I can think of for getting around this is to set the “Number of events per page” option on the “General” settings tab to whatever number you’d like. This settings tab is in Events > Settings in your wp-admin.
Then, you could add custom CSS to hide list view events other than the top 5 items, like this:
#tribe-geo-results .type-tribe_events {
display: none;
}
#tribe-geo-results .type-tribe_events:nth-child(1),
#tribe-geo-results .type-tribe_events:nth-child(2),
#tribe-geo-results .type-tribe_events:nth-child(3),
#tribe-geo-results .type-tribe_events:nth-child(4),
#tribe-geo-results .type-tribe_events:nth-child(5) {
display: inline-block;
}
This CSS will hide all of the list view items under the map on Map View; but then selectively only show the first 5 items. Just an example of how you could pull this off…
I hope this helps!
Cheers,
George