Hi, we do have multiple store and inventory. I would like to know is it possible to pull Location name into packing slip template?
I still can’t figure out Liquid variable for Location inside Order page.
Thank you.
Hi, we do have multiple store and inventory. I would like to know is it possible to pull Location name into packing slip template?
I still can’t figure out Liquid variable for Location inside Order page.
Thank you.
This is how I solved it:
{% if order.shipping_lines.size > 0 %}
{% for shipping_line in order.shipping_lines %}
Shipping Method: {{ shipping_line.title }}
{% break %}
{% endfor %}
{% else %}
Shipping details not available.
{% endif %}