Shopify Order Printer - Need Template for Gift Packing Slip

Topic summary

A user needs help creating a gift packing slip template for Shopify’s new Order Printer app that excludes all pricing and currency information. They’re struggling to modify the template without breaking it due to limited coding knowledge.

Solution Provided:

  • Another user shared a modified default packing slip template with all currency mentions removed
  • The template includes basic order details (order number, PO number, date), shipping/from addresses, and item quantities without prices
  • The code is designed to be simple enough for users with limited experience to copy/paste and further customize

Outcome:
The original poster confirmed the solution worked perfectly and expressed gratitude. The discussion appears resolved with a working template now available.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

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!