{%- for line_item in order.line_items -%}
{%- if line_item.fulfillment -%}
{{ line_item.fulfillment.tracking_number }}
{%- endif -%}
{%- endfor -%}
I tried this code and it worked. but the problem is, when there are multiple items in one order, the tracking number appears same multiple times because of {for} tag. like image below
How can I edit to show only once?
