• Resolved kristinubute

    (@kristinubute)


    HI

    I need to know HOW to change the bottom section near the Total of the INvoice in the template where it says:

    Total $319.75 (includes $
    29.07 Tax)

    It is displaying the $ value on the next line and the $ by itself (split into 2 lines), so I need to fix this view… AND I need it to say the word GST and NOT the word Tax as it defaults to.

    Total $319.75 (includes
    $29.07 Tax)

    THanks in advance.

    Regards
    Kristin

Viewing 1 replies (of 1 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hello Kristin,
    This text comes from WooCommerce itself, not our plugin.

    “Tax”
    There are 2 possibilities here:

    1. If you have set tax in the WooCommerce settings to “Itemized”, this string comes from the tax name you have given this particular rate in the settings. If you change this and place a new order, you’ll see that the new name will be used here. Existing orders will not be effected by this
    2. If you have set tax to “As a single total”, the string comes from the tax_or_vat() function and can only be overridden by either changing the translations or using the woocommerce_countries_tax_or_vat filter:
    
    add_filter( 'woocommerce_countries_tax_or_vat', function () {
      return __( 'GST', 'woocommerce' );
    });
    

    The separation of currency sign can be prevented by increasing the width of the totals area in the template.

    Alternatively, our Premium Templates extension provides a way to separate tax amounts from the total into their own row, and overriding the name/label directly from the settings. More information: Using the Customizer

Viewing 1 replies (of 1 total)
  • The topic ‘How to change the Invoice template down the bottom’ is closed to new replies.