Hi guys, now the order printer I use is being removed and shopify has added a new one called Shopify Order Printer - has anyone made a template for a picking list/packing slip with no prices or mention of money at all? We only need this when it’s a gift order and not knowing code, I keep breaking the template when I try to narrow it down to just the line items.
I quickly modified the default packing slip template to remove all mention of currency:
# 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 %}
| Item | Qty |
| - | - |
| {{ line_item.title }} | {{ line_item.quantity }} |
| Total Items: | {{ order.item_count }} |
You should be able to just copy/ paste this into a new template. I think it’s short enough that someone with very limited experience might be able to do some modifying to suit their needs.
Hope this helps.
You’re an absolute legend, thank you so much!