Ever thought that displaying just the available days and times would be a cleaner experience to your clients and customers in your LatePoint Calendar? There is a way to trim down just what is displayed with some very simple CSS changes to get the desired effect.
You just need to add either of the below to your theme’s custom css properties.
Display Available days in the Month
CSS Code for just displaying available days
.os-monthly-calendar-days .os-day.os-day-current.os-not-available {
display: none;
}
Display Available Hours Remaining for the Day
CSS Code for just displaying available time slots (when configured for Time Boxes).
.dp-timebox.is-off, .dp-timebox.is-booked {
display: none;
}