Minimum Theme Requirements
Requirements
<button type="submit">Add to Cart</button><form action="/cart/add" method="post">
<!-- Your Product form content goes here -->
</form><input type="hidden" name="id" value="{{ variant.id }}"/><select name="id">
{% for variant in product.variants %}
{% if variant.available %}
<option
{% if product.selected_variant.id == variant.id %}
selected
{% endif %}
value="{{ variant.id }}">
<...>
</option>
{% else %}
<option
{% if product.selected_variant.id == variant.id %}
selected
{% endif %}
disabled="disabled"
value="{{ variant.id }}">
<...>
</option>
{% endif %}
{% endfor %}
</select>Test your PDP
PreviousIntegrate into Shopify Themes built with LiquidNextIntegrate into Shopify Headless Storefronts
Last updated