I wanted to know how to remove the quantity selector on cart page when I have one product in the inventory available. If there is more than one product in the inventory, I want the quantity selector to show. I believe I need to edit this part of the code:
{% if current_variant.inventory_quantity == 1 %}
NONE
{% else %}
{% endif %}
I added
{% if current_variant.inventory_quantity == 1 %}
NONE
{% else %}
but it is not working.
Thanks for your help!