# Show Avis Options on Packing Slips

#### Step 1: Access Packing Slip Template <a href="#id-0-toc-title" id="id-0-toc-title"></a>

* Navigate to ***Settings > Shipping and delivery > (Packing Slip) Edit template***

**Step 2: Add custom code to Packing Slip template**

Place your cursor in the HTML body of the template use the shortcut Ctrl + F (Command + F on Mac) to open the search function.

Search for “{{ line\_item.title }}” or “line\_item.title” in the existing code.

After locating the tag \</span>

paste the following code

```
{% unless line_item.properties == empty %}
<ul>
  {% for property in line_item.properties %}
	{% if property.first contains '_apo' %}{% continue %}{% endif; %}
  <li>{{ property.first }}: {{ property.last }}</li>
  {% endfor %}
</ul>
{% endunless %}
```

<figure><img src="https://3264408981-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F3ClFZbSMFYUfUOKXAOru%2Fuploads%2FuTOVtJqlyukuGoxTpzqB%2Fimage.png?alt=media&#x26;token=c61beac3-29bf-4d35-ba4d-ece9a74c5989" alt=""><figcaption></figcaption></figure>

#### Step 3 : Save changes

Click on the “**Save**” button to apply the changes to the template.

Wait for approximately 30 seconds for the changes to take effect.
