{% if item.variant.inventory_quantity < 1 %}
<p style="color: red; font-weight: bold;">
✈️This item is on Pre-order. It may take extra 5 working days to reach you
</p>
{% elsif item.variant.inventory_quantity < 5 %}
<p style="color: orange; font-weight: bold;">
🔥 This item is selling fast. Only {{ item.variant.inventory_quantity }} left in stock!
</p>
{% endif %}
I like to remove the
This item is on Pre-order. It may take extra 5 working days to reach you text from items that inventory are not tracked.
Can someone help me with the code i currently have? thank you
