• Hi,

    Is it possible hide or eliminate the lines Tax and Subtotal above the total in the Quotes?

    We just need de total, because we offer the Quotes whithout Tax.

    thanks for your help!
    regards
    FJ

Viewing 4 replies - 1 through 4 (of 4 total)
  • Yes that is possible… you have to edit some files though…

    • This reply was modified 5 years, 3 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.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide Tax’ is closed to new replies.