How to remove text from items that inventory that are not tracked

{% 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 :airplane: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

{% 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 %}

Hey @Adam_Choong ,
Please replace this code with your previous version.

{% if 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 %}

Not quite follow, but you can check the inventory_policy and inventory_management (Liquid objects: variant) to see if inventory is tracked, so I’d do it like this

{% if item.variant.inventory_quantity < 1 %}
    <p style="color: red; font-weight: bold;">
      {% if item.variant.inventory_policy == 'continue'
        or item.variant.inventory_management == nil %}
        This item is on Pre-order. 
        It may take extra 5 working days to reach you
      {% else %}
        This item is out of stock
      {% endif %}
    </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 %}