By Tassos Marinos on Friday, 13 November 2020
Posted in General Issues
Likes 0
Views 667
Votes 0
When the EU VAT app is enabled, the VAT indication label on the checkout looks like this:



It would be much clearer to the user if they can see the actual VAT rate like this:



To make your life easier, I am including below the changes need to be done:

1. Update the COM_PAYPLANS_APP_EU_VAT_MODIFIER_MESSAGE language string in administrator/components/com_payplans/languages/site/en-GB.com_payplans.ini
COM_PAYPLANS_APP_EU_VAT_MODIFIER_MESSAGE="EU-VAT Tax added"

with
COM_PAYPLANS_APP_EU_VAT_MODIFIER_MESSAGE="EU-VAT Tax added %d%%"


2. Update plugins/payplans/euvat/app/euvat.php line 39:
$tax->title = JText::_('COM_PAYPLANS_APP_EU_VAT_MODIFIER_MESSAGE');

with
$tax->title = JText::sprintf('COM_PAYPLANS_APP_EU_VAT_MODIFIER_MESSAGE', $tax->rate);
Hey Tassos,

Thank you for updating this.
I've logged this into our issue tracker and we will include it in the upcoming release.
·
Friday, 13 November 2020 11:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Awesome. Thank you!
·
Saturday, 14 November 2020 02:27
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome.
Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding.
·
Monday, 16 November 2020 16:01
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post