Yes that is possible… you have to edit some files though…
-
This reply was modified 6 years, 9 months ago by
WPdev2022.
Thread Starter
SnlBg
(@snlbg)
Hello,
It is obvious but
Do you know what files to edit?
Is it possible to do it by functions.php?
I tried to do it directly from the public quotes file, but it’s not possible … <?php sliced_display_quote_totals(); ?> Hide all….
Thanks ernestph!
I would like to know what files need to be modified as we do not charge taxes for Invoices.
The unwanted elements could be suppressed with a few lines of CSS code. E.g. the Sub Total row has .row-sub-total class attribute. Almost any distinct element in the invoice has its specific class name attribute as well. All you may need to do in order to find it is to use the Browser’s DOM inspector tool. So you can get the desired CSS class selector and tweak your document. For example, the following
.row-sub-total {
display: none;
}
…will remove the Sub Total table row.