Skip to content
This repository has been archived by the owner on Aug 30, 2018. It is now read-only.

Commit

Permalink
Merge pull request #318 from Shopify/cart-logic
Browse files Browse the repository at this point in the history
Update cart properties size check
  • Loading branch information
cshold committed Jan 19, 2015
2 parents 78c5aa8 + 53b28d5 commit 30c1048
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/cart.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@
For more info on line item properties, visit:
- http://docs.shopify.com/support/your-store/products/how-do-I-collect-additional-information-on-the-product-page-Like-for-a-monogram-engraving-or-customization
{% endcomment %}
{% if item.properties.size > 0 %}
{% assign propertySize = item.properties | size %}
{% if propertySize > 0 %}
{% for p in item.properties %}
{% unless p.last == blank %}
{{ p.first }}:
Expand Down

0 comments on commit 30c1048

Please sign in to comment.