DanWebb
5/2/2015 - 8:20 AM

Get whether some (but not all) of the variants products are out of stock

Get whether some (but not all) of the variants products are out of stock

{% assign some_stock = false %}
{% assign out_of_stock = 0 %}
{% for variant in product.variants %}
  {% if variant.available == false %}
    {% assign out_of_stock = out_of_stock | plus: 1 %}
  {% endif %}
{% endfor %}
{% if product.variants.size != out_of_stock and out_of_stock > 0 %}
  {% assign some_stock = true %}
{% endif %}