payment:gwm
This commit is contained in:
parent
2a30fb895c
commit
22437099ae
@ -55,7 +55,12 @@
|
|||||||
|
|
||||||
<div class="qty-no">
|
<div class="qty-no">
|
||||||
<button type="button" class="minus"><i class="fa fa-minus"></i></button>
|
<button type="button" class="minus"><i class="fa fa-minus"></i></button>
|
||||||
<input type="number" onKeyDown="return false" id="0" class="input-text qty text" name="count[]" value="1" title="Qty" size="4" min="1" max="" step="1" placeholder="" inputmode="numeric" autocomplete="off" disabled/>
|
<input type="number" onKeyDown="return false" id="<?php echo $key; ?>" class="input-text qty text" name="count[]" value="<?php if ($pack_id[$key]['count'] == 0) {
|
||||||
|
echo 1;
|
||||||
|
} else {
|
||||||
|
echo $pack_id[$key]['count'];
|
||||||
|
}
|
||||||
|
?>" title="Qty" size="4" min="1" max="" step="1" placeholder="" inputmode="numeric" autocomplete="off" disabled/>
|
||||||
<button type="button" class="plus"><i class="fa fa-plus"></i></button>
|
<button type="button" class="plus"><i class="fa fa-plus"></i></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user