Hi Angeli!
We actually have a snippet that will let you set the timeframe that you want to be shown in week view. You can add this to the functions.php file of your child theme:
/**
* Description: Set the timeframe that should be shown in the week view.
*
* Usage: Copy the snippet in your theme's (preferably child theme's) functions.php file.
* Adjust the $start_of_day and $end_of_day variables according to your needs.
*
* Plugins: The Events Calendar, Events Calendar Pro
* Author: Andras Guseo
* Last Updated: February 13, 2018
*/
add_filter( 'tribe_events_week_get_hours', 'filter_week_hours' );
function filter_week_hours( $hours ) {
// Set the desired times here
$start_of_day = 9;
$end_of_day = 17;
$hour = 0;
foreach ( $hours as $key => $formatted_hour ) {
if ( $hour < $start_of_day || $hour > $end_of_day ) {
unset( $hours[ $hour ] );
}
$hour ++;
}
return $hours;
}
Let me know if this works for you!
Thanks,
Jennifer