If you can't see cart item properties in your cart, replace the following line:
{% if item.properties.size > 0 %}
with this snippet instead:
{% assign property_size = item.properties | size %} {% if property_size > 0 %}
If you can't see cart item properties in your cart, replace the following line:
{% if item.properties.size > 0 %}
with this snippet instead:
{% assign property_size = item.properties | size %} {% if property_size > 0 %}
Comments
0 comments
Please sign in to leave a comment.