# 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="/files/NbvPvYlEWQOXEITATNTK" 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.


---

# 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://options-docs-v2.avisplus.io/inventory-and-orders/show-avis-options-on-packing-slips.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.
