commit
f1cec6ebe4
|
|
@ -52,6 +52,8 @@
|
|||
|
||||
* #2781 [fixed] - Mobile menu is not showing correct sub-menu
|
||||
|
||||
* #2784 [fixed] - One booking for many days slot time issue
|
||||
|
||||
* #2785 [fixed] - missing address details in checkout page
|
||||
|
||||
* #2786 [fixed] - Getting error message on adding product to compare product from search page.
|
||||
|
|
|
|||
|
|
@ -62,8 +62,10 @@ class DefaultSlot extends Booking
|
|||
{
|
||||
$slots = [];
|
||||
|
||||
$dayOfWeek = $requestedDate->dayOfWeek;
|
||||
|
||||
foreach ($bookingProductSlot->slots as $timeDuration) {
|
||||
if ($requestedDate->dayOfWeek != $timeDuration['from_day']) {
|
||||
if ($dayOfWeek != $timeDuration['from_day']) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,19 @@
|
|||
margin-top: -13px;
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.has-control-group .control-group {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.has-control-group .control-group:first-child {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.has-control-group .control-group:last-child {
|
||||
padding-left: 10px;
|
||||
}
|
||||
</style>
|
||||
@stop
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue