• Resolved [email protected]

    (@careyprofessionalservicesnet)


    On the checkout page, I would like to change the Total including tax content from “$xxx.xx (includes $xx.00 Tax)” to “$xxx.xx (includes Tax)”. Where can I implement this change?

    I have added several translations to my child theme functions.php but cannot seem to find this one.

    Thank you, in advance.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can filter the string with the ‘woocommerce_cart_totals_order_total_html’ filter, but your function would need some php code to remove the tax amount.

    Or you can hide the tax amount with this custom css:

    .includes_tax .woocommerce-Price-amount.amount {
      display:none;
    }
    Thread Starter [email protected]

    (@careyprofessionalservicesnet)

    The CSS worked perfectly. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Translation for Total including tax on checkout’ is closed to new replies.