• Resolved seank123

    (@seank123)


    I have just noticed that the PDF invoice now has (ex. VAT) added to the end of the subtotal

    pdf invoice

    I’m sure it didn’t do this previously and we don’t have Tax enabled on WooCommerce at all

    How can I remove this as all of our prices are INC VAT?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter seank123

    (@seank123)

    I also noticed that it was on the WooCommerce new order emails too – so a bit a searching found this:

    
    function sv_change_email_tax_label( $label ) {
        $label = '';
        return $label;
    }
    add_filter( 'woocommerce_countries_ex_tax_or_vat', 'sv_change_email_tax_label' );
    

    Seems to have fixed it on both the order emails and PDF invoices

    Plugin Contributor Ewout

    (@pomegranate)

    Glad to hear you found this solution.
    If you’re prices don’t have taxes, you can also simply set the WooCommerce settings to show ‘including tax’ in cart & checkout.

    Ewout

    Thread Starter seank123

    (@seank123)

    Couldn’t see that setting – I think it’s only available if you enable taxes in the General Settings tab.

    I was playing with the taxes settings a few months ago but we’ve decided to disable it for now – that might have been when it started showing the ex VAT label!

    Plugin Contributor Ewout

    (@pomegranate)

    Hi! Indeed, you have to temporarily enable the ‘Enable taxes and tax calculations’ setting to see the Tax tab. It’s strange that they hide the settings when you have disabled this but still use it – sounds like a bug to me ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Recently started adding (ex. VAT) to subtotal price’ is closed to new replies.