Conditional
To show or hide certain elements based on specific conditions, you can use conditional tags. This gives you more control over the frontend and can improve the user experience.
If
li-if = product.available != true{% if product.available != true %}
<div class="product_tag">Sold out</div>
{% endif %}Unless
Case
Last updated
Was this helpful?