im trying to use this code:
{% if product.variants.first.inventory_quantity < 5 and product.variants.first.inventory_quantity > 0 %}
ONLY {{ product.variants.first.inventory_quantity }} LEFT
{% elsif product.variants.first.inventory_quantity < 1 %}SOLD OUT
{% endif %}but it only seems to work on the first variant and doesnt work when i change variants (ie XS, S, M etc)
Can anyone help with adjusting the code??