Hi,
Does anyone know if in V8 whether it is possible to get the shipping class costs in the checkout process to show as the inc vat price rather than the ex vat one.
I have searched on the forum and tried out the method that Bruce suggests in thread regarding V7.
However when I uploaded the changes and tried going through the shopping cart process it caused a script error when tyring to proceed to the page with the shipping class selection on.
Has anyone managed to solve this in V8 at all?
Regards
Does anyone know if in V8 whether it is possible to get the shipping class costs in the checkout process to show as the inc vat price rather than the ex vat one.
I have searched on the forum and tried out the method that Bruce suggests in thread regarding V7.
I have worked it out (so long as the customer doesn't want to ship without
VAT).
Open ShippingTemplate.pl ( C:\Program Files\Actinic v7\Sites\Site1\ShipControl\ShippingTemplate.pl ) with an editor like notepad, search for 'sub RestoreFinalUI' under this I located the line
ActinicOrder::FormatPrice($$phashShipping{Cost},
and changed it to read:
*ActinicOrder::FormatPrice($$phashShipping{Cost}*1.175,
VAT).
Open ShippingTemplate.pl ( C:\Program Files\Actinic v7\Sites\Site1\ShipControl\ShippingTemplate.pl ) with an editor like notepad, search for 'sub RestoreFinalUI' under this I located the line
ActinicOrder::FormatPrice($$phashShipping{Cost},
and changed it to read:
*ActinicOrder::FormatPrice($$phashShipping{Cost}*1.175,
Has anyone managed to solve this in V8 at all?
Regards
Comment