• Resolved beckhall

    (@beckhall)


    Hey there,
    I need to update my store to say GST instead of Tax.

    I was able to put (incl GST) successfully on all products on shop page but on my cart page it currently says (ex. tax) on my product line, subtotal line and next to shipping prices.

    I would like these to say ex. GST instead? Is there a way to change this?

    I have kept my cart setting at “excluding tax” so customers can see the shipping rates without GST.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @beckhall ,

    That’s an interesting request.

    So, the goal here is to show (ex. GST) instead of (ex. tax) in cart areas. Is that right? There are no settings for this, however, we can use one of WooCommerce’s filter to override the text. Here is an example code that you can add in your active theme’s functions.php file –

    add_filter( 'woocommerce_countries_ex_tax_or_vat', function($string) {
    	$string = __( '(ex. GST)', 'woocommerce' );
    	return $string;
    } );

    If you are not sure about using custom codes, please consult with an expert in this field and make sure to have a backup before making any changes to theme files.

    Thank you ??

    Hi there,

    We’ve not heard back from you in a while, so I’m marking this thread as resolved.

    Hopefully, you were able to find a solution to your problem! If you have further questions, please feel free to open a new topic.

    Thank you ??

    Thread Starter beckhall

    (@beckhall)

    Hey Rashed! Thank you for your reply!
    I have just applied this to the website and it worked ?? Thanks so much!!

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