How do I add virtual option data to my packing slip?

To get our apps virtual options to show up correctly in the packing slip, you will need to edit the code for the packing slip template.

  • Go to your Shopify dashboard
  • Select Settings
  • Select Shipping and delivery
  • Go to Packing slips(near the bottom of the page)
  • Click Edit template

In the Packing Slip template search for the code below.

{ line_item.variant_title }

You’ll need to add the code below on line 132 to between the code for {% endif %} and {% if line_item.sku != blank %}  (see screenshot for the exact placement):

{% for p in line_item.properties %}
{% unless p.last == blank %}
<div class="item-description-line">{{ p.first }}:
{% if p.last contains '/uploads/' %}
Uploaded File
{% else %}
{{ p.last }}
{% endif %}</div>
{% endunless %}
{% endfor %}

The result will look like the screenshot below.

This code will add the virtual option selections to the second page of the packing slip. If you want to add the selections to the same page you will need to make the shipping required. Click the following link for instructions on how to make the shipping required for virtual options
Click the link below if you want to use Shopify’s Order Printer App. 

Shopify Order Printer App Compatibility

Was this article helpful?
Dislike

Pin It on Pinterest