# Show Avis option on Shipping Confirmation Email

**Step 1: Access Confirmation Email Template**&#x20;

* Navigate to ***Settings > Notifications > Customer Notifications***.
* Locate and select ***Order confirmation***
* Click on the ***Edit code*** button to access the email template’s HTML code.

OR&#x20;

#### Step 1: Access New Order Email Template

* Navigate to ***Settings > Notifications > Staff Notifications***
* Locate and select ***New order***
* Click on the ***Edit code*** button to access the email template’s HTML code

**Step 2:** 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.line_item.title`** in the existing code and the tag  **`{% endif %}`**

Paste the following code snippet after the tag  **`{% endif %}`**.&#x20;

```
{% unless line.properties == empty %}
<ul>
  {% for property in line.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%2FVSbzyRd9e9ASUH73YZsg%2Fimagefvtgr.jpg?alt=media&#x26;token=1fe19664-4936-4f67-bcae-3937488336aa" 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.
