Re: Remove Tax From Invoice?
I changed Admin > Configuration > My Store > Display Prices with Tax in Admin to false but Tax 0% is still showing on the invoice :blink: I though that was going to do it but apparently not...
Re: Remove Tax From Invoice?
I'm wondering the same thing.
If someone can help us please :smile:
Re: Remove Tax From Invoice?
Has anyone found a solution to this?
Re: Remove Tax From Invoice?
I am keen to know how to go about removing tax off all items too. Before my site crashed and I had to start again I had this set up in fine working order. Is this possible to get it set up that way again, I've tried everything?
Thanks
Re: Remove Tax From Invoice?
Hands up for me to.......I am also trying to figure out if I can remove the taxes from my invoice.
I have no taxes , taxes classes deleted...and all taxes in admin and configuration are off (at least all the ones I found), but my invoice still shows 0% :(
Anyone??
Re: Remove Tax From Invoice?
You can find this in admin/invoice.php and remove the red parts:
<tr>
<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr class="dataTableHeadingRow">
<td class="dataTableHeadingContent" colspan="2"><?php echo TABLE_HEADING_PRODUCTS; ?></td>
<td class="dataTableHeadingContent"><?php echo TABLE_HEADING_PRODUCTS_MODEL; ?></td>
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TAX; ?></td>
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_PRICE_EXCLUDING_TAX; ?></td>
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_PRICE_INCLUDING_TAX; ?></td>
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_EXCLUDING_TAX; ?></td> <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_INCLUDING_TAX; ?></td>
</tr>
and here:
echo ' </td>' . "\n" .
' <td class="dataTableContent" valign="top">' . $order->products[$i]['model'] . '</td>' . "\n";
echo ' <td class="dataTableContent" align="right" valign="top">' . zen_display_tax_value($order->products[$i]['tax']) . '%</td>' . "\n" . ' <td class="dataTableContent" align="right" valign="top"><b>' .
$currencies->format($order->products[$i]['final_price'], true, $order->info['currency'], $order->info['currency_value']) .
($order->products[$i]['onetime_charges'] != 0 ? '<br />' .
Remember admin files aren't overridable.
Re: Remove Tax From Invoice?
Quote:
Originally Posted by
stevesh
Remember admin files aren't overridable.
Wauwwww thanks :)
But what do you mean that admin files are not overidable?
Re: Remove Tax From Invoice?
I mean that admin files can't be placed in folders with your custom template name, as can many store files, so when you upgrade, that file may be overwritten. Just save a copy somewhere and remember that you edited it.
Re: Remove Tax From Invoice?
Gotchya.........thanks :)