> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.easystore.co/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Update invoice tax display to latest version

###### In this article:
1. Briefing about new version of tax display 
2. Guide to amend your order invoice email template
---
## 1. Briefing of new version of tax display

 ⚠️ **Important note :**

*   This guide is applicable to merchants who charge GST to their customers and who have manually amended their own order invoice email template.
    
*   If you did not amend your order invoice email template before, you may ignore this guide, we will automatically update your order invoice email template.
    

Your invoice will be displayed with price before GST (as sub-total), total price after GST charges and a summary of tax at the bottom of invoice.  

![](https://storage.crisp.chat/users/helpdesk/website/1653136b5e2ed500/c3de7d3f-3b5f-436e-a0d5-03db4c_vad8u6.png)

## 2. Guide to amend your order invoice email template

**Step 1 :** Log in your EasyStore > Settings > Templates > **Order Invoice Email**  > Edit

![](https://storage.crisp.chat/users/helpdesk/website/9cf98bc0e3e25000/d0152690-4493-44b4-a60f-e79dcc_pgm84m.png)

**Step 2 :** Select code view

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/b-33_1fnu9mq.png)

3. Look for **<p style="text-align:right;">Product(s) with * is taxable product</p>**  around line 100 - 110 and remove it

![](https://storage.crisp.chat/users/helpdesk/website/825c283c13ace800/642b9ee7-ed22-4ccf-a99e-bb512f_x0ej9w.png)

**Step 4 :** Look for **{% if product.taxable %} *{% endif %}** around line 110 - 120 and replace with **{% if product.taxable %} SR{% else %} ZR{% endif %}**

![](https://storage.crisp.chat/users/helpdesk/website/fa67c638ae9c5000/53a3cfa9-5d70-456b-82ed-809633_1vu85ll.png)

![](https://storage.crisp.chat/users/helpdesk/website/fc2d8b38129a1000/fb693eef-447e-4aae-bead-4517e7_usjtcl.png)

**Step 5 :** Look for **order.total_shipping**, replace with **order.total_shipping_include_tax** for both results

![](https://storage.crisp.chat/users/helpdesk/website/56948ce305f4fc00/c15d15c9-48d5-448f-9ae6-00f457_e6222c.png)

![](https://storage.crisp.chat/users/helpdesk/website/c90fdc44c32f0000/1695f4ed-22d8-42d9-b6be-795428_88mn7n.png)

**Step 6 :** Look for below code around line 140 - 160 and delete it

```{% if order.shipping_tax != 0 %}
<table style="border-collapse:collapse;width:100%;">
    <tbody>
        <tr>
            <td style="padding:4px 0;text-align:right;">Shipping Tax</td>
            <td style="padding:4px 0;text-align:right;width:120px;">{{ order.shipping_tax }}</td>
        </tr>
    </tbody>
</table>
{% endif %}
```

![](https://storage.crisp.chat/users/helpdesk/website/250ca64a0dbab800/bdb3647f-48db-4579-aaab-0ba98a_1jkv1wj.png)

**Step 7 :**  
7.1 Look for below code around line 290 - 310

``` {% if order.total_tax != 0 %}
		<br>
		<table style="border-collapse:collapse;width:100%;">
			<tbody>
				<tr>
					<td style="padding:4px 0;text-align:right;">Taxes {% if order.taxes_included == true %} ( Included in taxable product ){% endif %}</td>
					<td style="padding:4px 0;text-align:right;width:120px;">{{ order.total_tax }}</td>
				</tr>
			</tbody>
		</table>{% endif %}
```

![](https://storage.crisp.chat/users/helpdesk/website/271911465eff1400/6cd8fd31-238f-40ce-bba2-907e09_wc73es.png)

7.2 Replace with below code

```<table style="border-collapse:collapse;width:100%;border:1px solid grey">

    <tr>

        <td style="padding:5px;">Code</td>
        <td style="padding:5px;text-align:right;">Amount</td>
        <td style="padding:5px;text-align:right;">Tax</td>
    </tr>
    <tr>
        <td style="padding:5px;">SR ({{ order.tax_rate }}%)
{% if order.taxes_included == true %}<i style="font-size:13px"> Included in taxable product</i>{% endif %}</td>
        <td style="padding:5px;text-align:right;">{{ order.total_taxable_item_price }}</td>
        <td style="padding:5px;text-align:right;">{{ order.total_taxable_item_tax }}</td>
    </tr>
    <tr>
        <td style="padding:5px;">ZR (0%)</td>
        <td style="padding:5px;text-align:right;">{{ order.total_non_taxable_item_price }}</td>
        <td style="padding:5px;text-align:right;">{{ order.total_non_taxable_item_tax }}</td>
    </tr>
</table>```                                                                                                ```

![](https://storage.crisp.chat/users/helpdesk/website/60518caaacc43800/9885fbe6-87c5-40aa-9ff4-1e6bf6_1w28zi0.png)

**Step 8 :** Select code view again and save