Hello Debra,
Thanks for reaching out!
It is possible to limit the hours shown in the weekly view. Just paste this snippet in your theme’s functions.php file:
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 < 7 || $hour > 18 ) {
unset( $hours[ $hour ] );
}
$hour ++;
}
return $hours;
}
You can customize the range shown as needed, if you adjust the numbers in this line:
if ( $hour < 7 || $hour > 18 ) {
Let me know if this helps!
Cheers,
Andras