Quantity Field Visibility on Product Cards
Edited
When adding the code:
<div class="qty-container" data-bind="visible: selected()">
<input type="text" class="input-spinner" min="1" data-bind="value: quantity">
</div>
The css element below is what controls if the quantity field is visible when the product selected or permanently shown.
data-bind="visible: selected()"
To make the quantity field always shown, the code will be as follows:
<div class="qty-container">
<input type="text" class="input-spinner" min="1" data-bind="value: quantity">
</div>