Hello,
You mean you want to display the coupon discount without tax. This is not controlled in AwoCoupon, but instead Virtuemart. So you would have to make alterations to your template to get that to work.
Find the file:
www/templates/[YOUR_TEMPLATE]/html/com_virtuemart/cart/default_pricelist.php
If that file does not exist, then copy this file there:
www/components/com_virtuemart/views/cart/tmpl/default_pricelist.php
Then change:
<td align="right"><?php echo $this->currencyDisplay->createPriceDiv ('couponTax', '', $this->cart->cartPrices['couponTax'], FALSE); ?> </td>
to this
<td align="right"> </td>
And this:
<td align="right"><?php echo $this->currencyDisplay->createPriceDiv ('salesPriceCoupon', '', $this->cart->cartPrices['salesPriceCoupon'], FALSE); ?> </td>
To this:
<td align="right"><?php echo $this->currencyDisplay->createPriceDiv ('couponValue', '', $this->cart->cartPrices['couponValue'], FALSE); ?> </td>