Hi Angelo,
I just found the answer to this one – hope it helps!
You can add this code to the header of your page and it will limit the hours shown in week view to 9am – 7pm
===
<?php
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 < 9 || $hour > 19 ) {
unset( $hours[ $hour ] );
}
$hour ++;
}
return $hours;
}
?>
====
If you want to modify the hours, just change the “if ( $hour < 9 || $hour > 19 ) {” line to be whatever time you want (in 24 hour format so 7pm here is “19”)
Hope that makes sense…