Page 1 of 1

Laravel Aimeos Change VAT text

Posted: 27 Mar 2018, 12:58
by mohal_04
Laravel: 5.6
Aimeos: 2017.x
PHP: 7.x
Environment: Linux

The official documentation says:

Please have a look at the documentation for your environment on where and how to overwrite translations.

Can anyone help me understand where I can change this?

Thanks!

Re: Laravel Aimeos Change VAT text

Posted: 27 Mar 2018, 20:37
by gladgladwrap
in config/shop add:

Code: Select all

'mshop' => [
		'price'=> [
			'taxflag' => 0,
		],
	],

Re: Laravel Aimeos Change VAT text

Posted: 28 Mar 2018, 04:55
by mohal_04
gladgladwrap wrote:in config/shop add:

Code: Select all

'mshop' => [
		'price'=> [
			'taxflag' => 0,
		],
	],
Yes, this is working but I want to change the text showing on the front-end. I don't want to use the term "VAT." From where I can change this?

Thanks!

Re: Laravel Aimeos Change VAT text

Posted: 28 Mar 2018, 08:04
by aimeos
How to overwrite translations in Laravel is described here ("Overwrite translations"):
https://aimeos.org/docs/Laravel#Customization

Re: Laravel Aimeos Change VAT text

Posted: 28 Mar 2018, 08:50
by mohal_04
aimeos wrote:How to overwrite translations in Laravel is described here ("Overwrite translations"):
https://aimeos.org/docs/Laravel#Customization
Thanks! :)