News:

Looking for documentation? Take a look on our wiki

Main Menu

Discounted price in email

Started by PetervanDriel, January 03, 2013, 10:44:26 AM

Previous topic - Next topic

PetervanDriel

In the confirmation email, by default the base price without tax is shown as price.
I want to change that in my template to the discounted price including VAT.

In the php it is now:

<?php echo '<span >'.$this->currency->priceDisplay($item->product_item_price$this->currency) .'</span><br />'?>

What should I use instead of $item->product_item_price to show the correct price???

Joomla!Fan

Change to:

<?php echo '<span >'.$this->currency->priceDisplay($item->product_basePriceWithTax) .'</span><br />'?>