This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove Value-Added Tax (VAT) outside of Europe | |
# This script will remove VAT when the destination country is not in Europe | |
# To be used only when the tax is included in the price of the items | |
# Set the VAT percentage included in product price | |
VAT_PERCENT = 20 | |
# Message that will be shown to customers on the cart page | |
# Some themes will require code changes to support this | |
VAT_REMOVAL_MESSAGE = "VAT removed" |