Skip to main content

How to Add Field Answers to Shopify Packing Slips with Magical Fields

Magical Fields

Kyle Godon avatar
Written by Kyle Godon
Updated over a week ago

If you want custom field answers to appear on your Shopify packing slips, follow these steps:

  1. From your Shopify admin, go to Settings > Shipping and delivery.

  2. In the Shipping and delivery menu, click Packing slip template.

  3. Find the line that contains {{ line_item.title }}.

  4. After the closing </span> tag for <span class="line-item-description-line"> around that code, paste the following code:

    {% unless line_item.properties == empty %}
    {%- for prop in line_item.properties -%}
    {% unless prop.first == "_Form Fields" %}
    {{ prop.first }}: {{ prop.last }}<br/>
    {% endunless %}
    {%- endfor -%}
    {% endunless %}
  5. Click Save.

Once saved, your packing slips will show the answers customers provided in your custom fields.

If you’d rather see how this works, you can watch the quick video below:

Did this answer your question?