# Display options in Packing Slip

**🛠️ Approach #1: Using Shopify Order Printer**

## <mark style="color:blue;">Using Shopify Order Printer</mark>

Our **Product Options** app works with Shopify’s **Order Printer** app, so you can include custom option details right on your packing slips.

{% stepper %}
{% step %}
&#x20;From your **Shopify admin**, click on **Apps**

{% endstep %}

{% step %}
Select **Order Printer** from your app list

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FOhvVl8am93uHBq0xL5Gk%2Fimage.png?alt=media&#x26;token=c6deced5-518b-4b65-858d-0f64ad032c70" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
Click **Manage Templates** > **Packing slip**

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FjfMjp7bmsqBiIEpTNaEM%2Fimage.png?alt=media&#x26;token=3c8d6df5-6dc9-46ac-9f8b-359d1b00073e" alt=""><figcaption></figcaption></figure>

{% endstep %}

{% step %}
**Download the packing slip template** *(*[*click this button to download*](https://github.com/globo-software/display-cart-line-item-in-notification/blob/main/gpo-packing-slip-template-order-printer.liquid)*)*
{% endstep %}

{% step %}
**Copy the code**&#x20;

```
 <div class="gpo-properties">
    {% assign property_size = line_item.properties | size %} 
    {% if property_size > 0 %} 
      {% for p in line_item.properties %} 
        <div class="gpo-property">
          {% assign first_character_in_key = p.first | truncate: 1, '' %}
          {% unless p.last == blank or first_character_in_key == '_' %} 
            <span>{{ p.first }}: </span>
            {%- if p.last contains '/uploads/' -%} 
              <a href="{{ p.last }}">{{ p.last | split: '/' | last }}</a> 
            {%- else -%} 
              <span>{{ p.last }}</span>
            {%- endif -%} 
          {% endunless %} 
        </div> 
      {% endfor %}
    {% endif %} 
  </div>
```

and **paste to Template Details** section

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FOV2KXHP6ADv82flIYA6d%2Fimage.png?alt=media&#x26;token=adf3913d-0afe-4bda-b1dd-7efbfd87a09d" alt=""><figcaption></figcaption></figure>

{% endstep %}

{% step %}
**Save the change**

{% endstep %}
{% endstepper %}

## <mark style="color:blue;">Through Shopify Settings</mark>&#x20;

This method lets you directly update Shopify’s built-in packing slip template from your store’s settings.

{% stepper %}
{% step %}
From your **Shopify admin**, click on **Settings**
{% endstep %}

{% step %}
Go to **Shipping and Delivery**
{% endstep %}

{% step %}
Scroll down to the **Packing Slip Template** section

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2Fg7da80cTSrSmMkDZPZ0L%2Fimage.png?alt=media&#x26;token=32f0c825-6c7a-416f-ae30-751608a62914" alt=""><figcaption></figcaption></figure>

Click **Edit** next to the Packing Slip Template
{% endstep %}

{% step %}
**Download the packing slip template** *(*[*click this button to dowload*](https://github.com/globo-software/display-cart-line-item-in-notification/blob/main/gpo-packing-slip-template.liquid)*)*
{% endstep %}

{% step %}
**Copy the code**

```
  <div class="gpo-properties">
          {% assign property_size = line_item.properties | size %} 
          {% if property_size > 0 %} 
          {% for p in line_item.properties %} 
          <div class="gpo-property">
            {% assign first_character_in_key = p.first | truncate: 1, '' %}
            {% unless p.last == blank or first_character_in_key == '_' %} 
            <span>{{ p.first }}: </span>
            {%- if p.last contains '/uploads/' -%} 
            <a href="{{ p.last }}">{{ p.last | split: '/' | last }}</a> 
            {%- else -%} 
            {{ p.last }} 
            {%- endif -%} 
            {% endunless %} 
          </div> 
          {% endfor %}
          {% endif %} 
    </div>
```

&#x20;and Paste to **Edit Packing Slip Template** field

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2F7hhoxnEaYqZ6qpMbr2Zx%2Fimage.png?alt=media&#x26;token=faaf9d94-8142-44ee-8fb1-36f0652e406e" alt=""><figcaption></figcaption></figure>

{% endstep %}

{% step %}

### Save

{% endstep %}
{% endstepper %}

📧 **Need Help?**\
If you run into any issues while setting up your option set, feel free to reach out to us at **Chat** or email **<contact@globosoftware.net>**.
