nicolas wrote:
3. There is no option to tell the system to display the unit price without tax. you will have to edit the email via the menu System->Emails and change the line:
<?php echo $currencyHelper->format($item->order_product_price+$item->order_product_tax,$data->order_currency_id); ?>
to:
<?php echo $currencyHelper->format($item->order_product_price,$data->order_currency_id); ?>
Thank you, this helped alot.
I changed the PHP in the email and now the Order is Created email is exactly right, but the Order is Confirmed email has one small problem.
It is displaying the unit price correctly and it displays the total including tax correctly, but it no longer has a line for tax in it. How do I get that back? See the ATTACHED image.