VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: PetervanDriel on January 03, 2013, 10:44:26 AM

Title: Discounted price in email
Post by: PetervanDriel on January 03, 2013, 10:44:26 AM
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???
Title: Re: Discounted price in email
Post by: Joomla!Fan on March 12, 2013, 15:39:17 PM
Change to:

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