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?