# Packing Slip

Follow the steps below on how to display option selections in the Packing slip template.

1\. Navigate into **Settings** of your Shopify admin.

2\. Click on **Shipping and delivery**.

![](/files/310yDnIHuBYAAvquNu87)

3\. Locate the **Packing Slip** template and click on it to edit.

![](/files/z4xILH6r31fGZIqD1lF3)

4\. Copy the following code snippet.

```liquid
{% if line_item.properties != blank %} 
<span class="line-item-description-line"> 
  {% for p in line_item.properties %}
  {% if p.first contains '_io_' %}
  {% continue %}
  {% endif %}
  {% unless p.last == blank %}
  {{p.first}}: {{ p.last }}<br />
  {% endunless %} 
  {% endfor %}
</span>
{% endif %}
<br>
```

5\. Paste the code that you just copied underneath the following code.

```liquid
{% if line_item.sku != blank %} 
<span class="line-item-description-line">
{{ line_item.sku }}
</span>
{% endif %}
```

![](/files/VJyYYYB5IQ07JbSD6JNU)

6\. Click the **Save** button at the top of the page.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://shoppad.gitbook.io/infinite-options/display-options-on-shopify-notifications/shopify-emails-and-packing-slip-templates/packing-slip.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
