Hi and welcome 🙂
I found an existing snippet (shared below, add to your theme’s functions.php file to implement) which limits the hours displayed in Day view from 8am to 10pm. Does that work? Is there a specific view you’re trying to apply it on? Are you going for all views? Let me know and I’d be happy to help further assist.
Thanks and take care!
add_filter( 'tribe_events_week_get_hours', 'filter_week_hours' );
function filter_week_hours( $hours ) {
$hour = 0;
foreach ( $hours as $key => $formatted_hour ) {
if ( $hour < 8 || $hour > 22 ) {
unset( $hours[ $hour ] );
}
$hour ++;
}
return $hours;
}