Adding your tax or VAT number

How to add your company tax registration or VAT number to the templates

Blanca Gongora avatar
Written by Blanca Gongora
Updated over a week ago

You can update your templates to include your company tax registration or VAT number by following the guide in any of the two options below.

Option 1:

The latest version of the app allows you to enter this information quickly. If you've recently installed the app or created a template, it will display the most updated version.

To add the TAX or VAT number, you'd just need to:

1- Login to Order Printer Pro

2- On the "Manage templates" page, click "Edit template" on the template you would like to update.

3- In the "Code" section, find {% assign shop_tax_number_text = "" %}

Note: If you don't find this, it's probably because the template doesn't have the latest version. In this case, you can click on "import or reset template" to create the new one, or you can simply follow the steps described in option 2.

4- Between the quotes, write your VAT number

6- Click Save.

Option 2:

1- Login to Order Printer Pro

2- On the "Manage templates" page, click "Edit template" on the template you would like to update.

3- In the "Code" section, find the following Liquid variables that reference your store address:

{{ shop_address.address1 }}, {{ shop_address.city }}, {{ shop_address.province_code }}, {{ shop_address.zip }}, {{ shop_address.country }}

4- Add the following code, just below that. Make sure to replace xxxxxxxxxxx with your actual vat number.

<br>
VAT No. xxxxxxxxxxx

5- Once that is done, the template code should look like this:

{{ shop_address.address1 }}, {{ shop_address.city }}, {{ shop_address.province_code }}, {{ shop_address.zip }}, {{ shop_address.country }}
<br>
VAT No. xxxxxxxxxxx

6- Click Save.

Did this answer your question?