Good evening JamesĀ and welcome to the Events Calendar Support forum!
Thank you for reaching out to us.
I would love to help you with this topic.
Some advanced CSS should do the trick.
Try adding the following CSS rule to your style.css file or in your Custom CSS metabox:
/* start at 8:00 AM */
.tribe-week-grid-inner-wrap > .tribe-week-grid-block:nth-child(-n+8),
.tribe-week-grid-hours > div:nth-child(-n+8) {
display: none;
}
/* end at 10:00 PM */
.tribe-week-grid-inner-wrap > .tribe-week-grid-block:nth-child(11),
.tribe-week-grid-hours > div:nth-child(11) {
display: none;
}
Let me know if that helps.
Have a great day!
Geoff B.