How to remove VAT from store


In this guide, we will see how to set VAT to false for Store.



Application


The value responsible for this can be found in:

“C:\Program Files (x86)\Atomia\Store\Web.config”

Under <add key="PricesIncludeVat" value="true" />


This is the default value, as it fetched, “by Original Files” .


In order to change that and make it permanent, you need to create/edit file in :

“C:\Program Files (x86)\Atomia\Store\\Transformation Files\Web.[something_you_want_here].config”

With

<?xml version="1.0" encoding="UTF-8"?>

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">

 <appSettings>

 <add key="PricesIncludeVat" value="false" xdt:Locator="Match(key)" xdt:Transform="SetAttributes(value)" />

 </appSettings>

</configuration>


After that is done, apply transformations by running the “Recreate config” file in the root directory of Store(see, “C:\Program Files (x86)\Atomia\Store”).


More on transformations can be found here: http://support.atomia.com/solution/articles/4000010876-atomia-configuration-files-and-transformations