Skip to content

Instantly share code, notes, and snippets.

@juque
Created January 31, 2013 18:37
Show Gist options
  • Save juque/4685142 to your computer and use it in GitHub Desktop.
Save juque/4685142 to your computer and use it in GitHub Desktop.
custom_add_to_cart
<form action="{{ add_to_cart_url }}" method="post">
<input type="hidden" name="cart_item[product_id]" value="{{ product.id }}" />
<p>
<span>Cantidad</span>
<input type="text" name="cart_item[quantity]" value="1" />
<span> x talla </span>
<select name="cart_item[variant_id]">
{% for variant in product.variants %}
<option id="i-{{ variant.id }}" value="{{ variant.id }}" {% unless variant.is_available %}disabled="disabled"{% endunless %}>{{ variant.title }} {% if variant.is_available != true %} - agotado {% endif %}</option>
{% endfor %}
</select>
</p>
<input type="submit" value="Comprar" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment