How can I display unfulfilled items text only when items are missing?

How do i make missing line item text only display when unfulfilled items? I don’t want it to display when removed items on order.

{% unless includes_all_line_items_in_order %}
    

---

    

      Unfulfilled items text.

{% endunless %}
1 Like

I would just comment it out, like this:

{% comment %}
{% unless includes_all_line_items_in_order %}
    

---

    

      Unfulfilled items text.

{% endunless %}
{% endcomment %}