hey hows it going, i was wondering if maybe y’all could help me with this problem
im trying to set my minimum on my quantity selector to 250, but i cant seem to get the code right
this is what i have
<quantity-counter class="quantity-selector">
<label for="product-quantity-buttons-{{ unique }}" class="label-hidden">{{ 'products.product.quantity' | t }}</label>
<button
class="quantity__minus"
type="button"
name="decrease"
title="{{ 'cart.general.decrease_quantity_label' | t }} - {{ product.title | strip_html }}">
{%- render 'icon-minus' -%}
</button>
<input
id="product-quantity-buttons-{{ unique }}"
class="quantity__input"
type="number"
name="quantity"
value="1"
min="1"
aria-label="quantity"
autocomplete="off"
title="{{ 'cart.general.quantity_field_label' | t }} - {{ product.title | strip_html }}"
pattern="[0-9]*"
data-popout-input>
<button
class="quantity__plus"
type="button"
name="increase"
title="{{ 'cart.general.increase_quantity_label' | t }} - {{ product.title | strip_html }}">
{%- render 'icon-plus' -%}
</button>
</quantity-counter>
</popout-select>
{%- else -%}
<input type="hidden" name="quantity" value="1">
{%- endif -%}
{%- endcapture -%}
hopefully yall could help.
thanks so much in advance
best
Jayce