I see that the notification email goes
{% if fulfillment.tracking_numbers.size == 1 and fulfillment.tracking_company and fulfillment.tracking_url %}
{{ fulfillment.tracking_company }} numero di tracking: {{ fulfillment.tracking_numbers.first }}
{% elsif fulfillment.tracking_numbers.size == 1 %}
Numero di tracking: {{ fulfillment.tracking_numbers.first }}
{% else %}
Numeri di tracking:
{% for tracking_number in fulfillment.tracking_numbers %}
{{ tracking_number }}
{% endfor %}
{% endif %}
Problem is, the link goes to GLS Europe, instead of going GLS Italy or TNT, is it possible to change the url (I suppose its under “fulfillment.tracking_url” ? but I can’t seem to find WHERE this refers to).
