Quote Originally Posted by Steven300 View Post
I haven't tested this yet and it may not work for downloadable or virtual products.

In includes/templates/your_template/templates/tpl_shopping_cart_default.php

Find:
PHP Code:
$sric_total $cartSricTotal $sric_shipping_simple
Directly below it, add these two lines:
PHP Code:
$vat = ($sric_total 100) * 15;
$sric_total $sric_total $vat
Hey steven, thanks for the reply.

I was considering heading that direction (manually working out the VAT deduction) but it causes some issues.

If I implement that code, the total displayed on the mod differs from the total displayed in the cart, by a penny.

For example, the order I'm testing right now, the mod displays it like - Total: £35.08, but the Zen shopping cart displays it like Total: £35.07

I'm guessing ZC uses a different method of rounding up the sum.

Thanks though!