Hello,
You can repair problem with monhtly calendar with this modification:
components/com_booking/views/subject/tmpl/default_calendar_monthly.php - around row 121
Modify row:
if ($service->allowFixLimit || ($service->rtype == RESERVATION_TYPE_DAILY && (($config->bookCurrentDay && $day->Uts === strtotime($this->setting->currentDate)) || $day->Uts > $this->setting->currentDayUTS) && $service->canReserve && in_array($service->rtypeId, $this->lists['rids']))) {
To this code:
if ($service->allowFixLimit || ($service->rtype == RESERVATION_TYPE_DAILY && (($config->bookCurrentDay && $day->date == $this->setting->currentDate) || $day->Uts > $this->setting->currentDayUTS) && $service->canReserve && in_array($service->rtypeId, $this->lists['rids']))) {