Sometimes you don’t want users to have to click a “View All” link in Month View to see all the events scheduled that day, but would rather have all the events presented outright. This is totally doable and requires a two-pronged approach: first, by adding a snippet to your functions.php file; and second, by eliminating the “View More” link from the calendar itself.

For the snippet, simply add the code below to your theme’s functions.php file. The snippet sets the pages_per_post to -1, which WordPress takes as meaning enforce no limit.

add_filter( 'tribe_events_month_day_limit', 'tribe_remove_calendar_day_limit' );

function tribe_remove_calendar_day_limit() { 
    return -1;
}