This is a great way to print documents for orders with multiple shipments.
Update the default templates
The following guide is relevant if you are using the template designs that are provided within the Order Printer Pro app.
Steps:
1- Login to Order Printer Pro
2- On the "Manage templates" page, click "Edit template" on the template you would like to update.
Note: This must be either the Packing slip or Returns form template, this will not work in Receipt / Invoice templates.
3- In the "Code" section, find the following Liquid variable (found at the top of the code):
{% assign SETTING_use_latest_fulfillment = false %}
4- Change it to:
{% assign SETTING_use_latest_fulfillment = true %}
5- Click Save.
Update a purchased Order Printer Template
The following guide is relevant if you have purchased a custom template from the Order Printer Templates app. You should first import your template into Order Printer Pro.
Steps:
1- Login to Order Printer Pro
2- On the "Manage templates" page, click "Edit template" on the template you would like to update. Note: This must be either the Packing slip or Returns form template, this will not work in Receipt / Invoice templates.
3- In the "Code" section, add the following Liquid variables at the very top of your template code:
{% assign order_name = latest_fulfillment.name %}
{% assign created_at = latest_fulfillment.created_at %}
{% assign line_items = latest_fulfillment.line_items %}
4- Click Save.