Show preorder offer information on packing slips
STOQ supports showing preorder offer information on packing slips. This helps merchants have a better order management and offer a better delivery experience for the customer.
Enable Preorder offer Information options at every step of purchase flow
While logged into your Shopify Admin, go to "Settings".

Click on "Shipping and delivery" and scroll down to the bottom where it mentions "Packing slips"

Click on "Packing slip template" to edit the code.

If you'd like to show all the offer information below the product title in your packing slip, find the place where it mentions line_item.title and below that add the following code.
Once you've added the code, click "Save" to save your changes.

Now your packing slips will show all the preorder offer information you've enabled in your offer settings.
If you would like to display only the preorder offer name in the packing slip, you can customize it in the Edit offer > Advanced > Add custom cart attribute section. Please check the prerequisite link to learn more.
Go to the order you wish to print the packing slip for and click on "Print > Print packing slips".

You can see the preview with the above added information on your packing slip.

If you need any help in showing preorder information on packing slips, reach out to our 24/7 live support.
Prerequisites
Enable Preorder offer Information options at every step of purchase flow
How to show preorder offer information on packing slips
While logged into your Shopify Admin, go to "Settings".

Click on "Shipping and delivery" and scroll down to the bottom where it mentions "Packing slips"

Click on "Packing slip template" to edit the code.

If you'd like to show all the offer information below the product title in your packing slip, find the place where it mentions line_item.title and below that add the following code.
{% for property in line_item.properties %}
<span class="line-item-description-line">
{{ property.first }}: {{ property.last }}
</span>
{% endfor %}
Once you've added the code, click "Save" to save your changes.

Now your packing slips will show all the preorder offer information you've enabled in your offer settings.
If you would like to display only the preorder offer name in the packing slip, you can customize it in the Edit offer > Advanced > Add custom cart attribute section. Please check the prerequisite link to learn more.
Sample preview of packing slips that contain preorder offer information
Go to the order you wish to print the packing slip for and click on "Print > Print packing slips".

You can see the preview with the above added information on your packing slip.

If you need any help in showing preorder information on packing slips, reach out to our 24/7 live support.
Updated on: 19/05/2025
Thank you!