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 :)
Re: Remove Tax From Invoice?
Okay......feedback.
Did as suggested, and now not only the tax but all the prices are gone from the invoice as well.... :(
I did it twice just incase I did it wrong the first time, but same result both times :(
Now I am not sure if I am doing something wrong, or is it not enough just removing those codes?
Re: Remove Tax From Invoice?
You can remove any or all of the lines in red in the first part. My thinking was that if you aren't using taxes, all the pricing that includes or excludes tax wouldn't be relevant. You should have one total price on the far right.
2 Attachment(s)
Re: Remove Tax From Invoice?
I appreciate your help Stevesh, but changing the files as suggested didn't work for me. I am including a printscreen so you see how it looked when removing the codes.
I asked someone to look at it for me, and he has made changes to the file. Again, I have included a printscreen of what my invoice looks like now.
Maybe you are wondering why I didn't ask him in the first place, but here is where YOUR help was invaluable....you pointed us in the right direction, as he didn't know where the files for the invoice were :)
So thank you....... :)
Should we share the file here? Only problem is, after fiddling around with it so long , we can't actually pinpoint where he made the changes anymore..... it would have to be the whole file.
BTw..... we also renamed the headings so they are without the tax reference. Ignore the 2 different languages in the attachments, I have a multilingual webshop :)
Re: Remove Tax From Invoice?
Stevesh, thank you for your help, but that did not work for me.
If I make those edits, all of the prices and totals are removed, even if I only remove the tax field. Is there any way to remove the model, tax, Price (ex), and Total (ex) fields, while keeping the price for each item and the total?
Re: Remove Tax From Invoice?
I've had to de-register for VAT so needed to change this. Please back up the invoice.php file first. Its not perfect but it is better. See the original fix and amend to this
<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" colspan="5" align="right"><?php echo TABLE_HEADING_TOTAL_INCLUDING_TAX; ?></td>
</tr>
And then this section to this
echo ' <td class="dataTableContent" align="right" valign="top">' . zen_display_tax_value($order->products[$i]['']) . '</td>' . "\n" .
' <td class="dataTableContent" align="right" valign="top"><b>' .
Re: Remove Tax From Invoice?
Quote:
Originally Posted by
TonyB6
I've had to de-register for VAT so needed to change this. Please back up the invoice.php file first. Its not perfect but it is better. See the original fix and amend to this
<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" colspan="5" align="right"><?php echo TABLE_HEADING_TOTAL_INCLUDING_TAX; ?></td>
</tr>
And then this section to this
echo ' <td class="dataTableContent" align="right" valign="top">' . zen_display_tax_value($order->products[$i]['']) . '</td>' . "\n" .
' <td class="dataTableContent" align="right" valign="top"><b>' .
This is better, thanks :clap: but still shows all the previous totals. Can this be improved any more?
Re: Remove Tax From Invoice?