Vsmith-2 Really quick fix:
_partials\localBox\timeslot.php
Change this:
<b><?=
($orderTimeIsAsap)
? lang('igniter.local::default.text_asap')
: $orderDateTime->isoFormat($timePickerDateTimeFormat);
?></b>
To this:
<b><?= $orderDateTime->isoFormat($timePickerDateTimeFormat);?></b>
Delete this Button:
<button
type="button"
class="dropdown-item py-2"
data-timepicker-option="asap"
><i class="fa fa-clock-o"></i> <?= lang('igniter.local::default.text_asap'); ?></button>
You can play along with this.
As I mentioned this is a quick fix and you can improve the results.