• Resolved ppeople

    (@ppeople)


    I need to change the name of the included taxes on the invoice. At the moment it shows the total and says includes Tax. In Australia we need to change the word Tax to GST. Is there a way to change the invoice so it says something like :

    Total $35.00 (includes $3.18 GST)

    instead of

    Total $35.00 (includes $3.18 Tax) to

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor alexmigf

    (@alexmigf)

    Hello @ppeople

    Under WooCommerce > Settings > Tax > Display tax totals if you have selected ‘as a single total‘ you should add the code snippet below to your theme functions.php file:

    add_filter( 'woocommerce_countries_tax_or_vat', function( $return ) {
    	return 'GST';
    }, 10, 1 );

    If you never worked with actions/filters please read this documentation page: How to use filters

    If you have selected ‘itemized‘ the best way is renaming your tax rate. This will work for new orders only.

    • This reply was modified 3 years, 11 months ago by alexmigf.
    • This reply was modified 3 years, 11 months ago by alexmigf.
    Thread Starter ppeople

    (@ppeople)

    Wonderful!! Works perfectly. Thanks.

    Thread Starter ppeople

    (@ppeople)

    Great job.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change name of Tax on Invoice’ is closed to new replies.