Also - in /skin1/mail/html/order_data.tpl
you may want/need to comment out a tax display table cell
I did for my store.
for example:
Code:
{* BEGIN comment out the itemized tax field in the html invoice *}
{* {if $order.extra.tax_info.display_cart_products_tax_rates eq "Y" and $_userinfo.tax_exempt ne "Y"}
<th nowrap="nowrap" width="100" bgcolor="#cccccc">{if $order.extra.tax_info.product_tax_name ne ""}{$order.extra.tax_info.product_tax_name}{else}{$lng.lbl_tax}{/if}</th>
{/if} *}
{* END comment out the itemized tax field in the html invoice *}
also, 3 instances of:
Code:
{* {$tax.rate_value|formatprice:false:false:3} *}
I think this is the only tax related display code that I commented out. Each store will need to find its own best way to display how you want for your customers.
Hope this helps.
Jeremy