• I would like to change the words “incl. Tax (%)” on the checkout page. I have found the following code.

    <?php
    if ( get_option( 'woocommerce_display_totals_excluding_tax' ) == 'no' && get_option( 'woocommerce_prices_include_tax' ) == 'yes' ) {
    _e( 'incl.?', 'woocommerce' );
    }

    What I would actually like to do is change the words to “incl. GST” How would I do this? I can’t seem to remove the word “tax”.

    https://www.ads-software.com/extend/plugins/woocommerce/

  • The topic ‘How to change the words "incl. Tax" on the checkout page’ is closed to new replies.