Reviews (367)
Great app, more customisable if you are using AI to write the code, below is the code I use if you are interested
Cart Note, Order Tag, Buyer details is included in the packing slip
Packing Slip
Order {{ order.order_name }}
{% if order.po_number %}PO # {{ order.po_number }}{% endif %}
{{ "now" | date: "%B %e, %Y" }}
From
{{ shop.name }}
{{ shop.address | format_address }}
{% if order.shipping_address %}
Ship to
{{ order.shipping_address | format_address }}
{% endif %}
Order Details
{% for line_item in order.line_items %}
{% endfor %}
Check
Qty
Item
{{ line_item.quantity }}
{{ line_item.title }}
{% if order.note %}
Note: {{ order.note }}
{% endif %}
Buyer Details:
{{ customer.name }}
{{ customer.email }}
{{ customer.contact }}
Order Tags:
{{ order.tags | join: ", " }}