• I’m looking for a way to let the initial value of the products equal zero. I think by default they come as 1.

    <div class="quantity">
    		<input class="minus" type="button" value="-">
    		<input type="number" step="1" min="0" max="" name="quantity" value="1" title="Qtd" class="input-text qty text" size="4" pattern="[0-9]*" inputmode="numeric">
    		<input class="plus" type="button" value="+">
    	</div>

    I would change value=”1″ para value=”0″

  • The topic ‘Initial value in products’ is closed to new replies.