Taxflag from TypoScript not respected
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Taxflag from TypoScript not respected
I have set
in the TypoScript Setup, and the rest of the TypoScript in that file is working, and in the TYPO3 backend it shows that the value is set correctly.
But, unfortunately, the value is not respected. The basket and the checkout show the prices with tax included.
And, when I set instead of then the prices are shown with tax excluded.
What can I do to have the tax excluded (correctly)?
TYPO3: 12.4.43
Aimeos: 24.10.5
PHP: 8.2
Code: Select all
plugin.tx_aimeos.settings.mshop.price.taxflag = 0But, unfortunately, the value is not respected. The basket and the checkout show the prices with tax included.
And, when I set
Code: Select all
$priceTaxflag = 0Code: Select all
$priceTaxflag = $price->getTaxFlag();What can I do to have the tax excluded (correctly)?
TYPO3: 12.4.43
Aimeos: 24.10.5
PHP: 8.2
Re: Taxflag from TypoScript not respected
For the frontend, the setting is correct but it's better to add this setting to a PHP config file so it's available in the scheduler tasks too.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
Re: Taxflag from TypoScript not respected
Thank you very much! That works perfectly.