Beacuse of poor TAX calculation cheme in cs-cart, I am modifying template to suite my need.
I have managed to recalculate “You save” like this:
{include file="common_templates/price.tpl" value=$product.list_price-$product.taxed_price
```<br />
<br />
But can't recalculate % of discount. I am trying like this:<br />
```php
{include file="common_templates/price.tpl" value=($product.list_price-$product.taxed_price) % $product.list_price
```<br />
<br />
I am getting smarty error, probably because of "(" character<br />
<br />
I would appreciate any help