{"id":3107,"date":"2021-09-09T09:15:56","date_gmt":"2021-09-09T09:15:56","guid":{"rendered":"https:\/\/scriptfeeds.com\/blog\/?p=3107"},"modified":"2025-04-12T19:13:10","modified_gmt":"2025-04-12T19:13:10","slug":"how-to-replace-includes-tax-text-in-woocommerce-cart-checkout-page","status":"publish","type":"post","link":"https:\/\/scriptfeeds.com\/blog\/wordpress\/how-to-replace-includes-tax-text-in-woocommerce-cart-checkout-page\/","title":{"rendered":"How to easily replace Includes Tax text in WooCommerce Cart &#038; checkout page 2025"},"content":{"rendered":"\n<p>This article will guide you replace<strong> Includes Tax<\/strong> text in WooCommerce Cart &amp; Checkout Page. WooCommerce offers a strong and flexible Taxation system . You can implement almost any tax system in it. <\/p>\n\n\n\n<p><strong><a href=\"http:\/\/woocommerce.com\" data-type=\"URL\" data-id=\"woocommerce.com\" target=\"_blank\" rel=\"noopener\">WooCommerce<\/a><\/strong> also offers lots of extension to increase features of TAX system in your website.  WooCommerce globally consider TAX system as VAT, however we can edit the VAT text to required TAX name in shop display. There is no available option in WooCommerce to change the VAT text in cart and checkout page.<\/p>\n\n\n\n<div class=\"wp-block-rank-math-toc-block\" id=\"rank-math-toc\"><h2>Table of Contents<\/h2><nav><ul><li><a href=\"#strong-query-about-replace-includes-tax-text-in-woo-commerce-cart-page-strong\">Question about replacing Tax text <\/a><ul><li><a href=\"#strong-if-your-tax-on-cart-and-checkout-page-is-as-single-total-then-copy-below-code-on-your-functions-php-file-strong\">If Your TAX on Cart and checkout page is as single total<\/a><\/li><li><a href=\"#strong-similarly-if-the-tax-is-inclusive-or-exclusive-then-use-below-codes-as-required-strong\">If the TAX is inclusive or exclusive.<\/a><\/li><li><a href=\"#strong-if-you-want-to-strong\">If you want to:<\/a><\/li><li><a href=\"#strong-you-can-use-below-code-in-your-child-themes-functions-php-file-to-show-your-tax-name-strong\">To show your TAX name.<\/a><\/li><li><a href=\"#strong-if-you-want-to-change-ex-vat-to-ex-gst-or-to-something-else-you-can-add-the-below-code-in-your-functions-php-file-strong\">If you want to change Ex VAT to Ex GST or to something else <\/a><\/li><\/ul><\/li><li><a href=\"#strong-update-replace-includes-tax-text-in-woo-commerce-cart-strong\">UPDATE : Replace Includes Tax text in WooCommerce Cart  <\/a><\/li><\/ul><\/nav><\/div>\n\n\n\n<h2 class=\"has-medium-font-size wp-block-heading\" id=\"strong-query-about-replace-includes-tax-text-in-woo-commerce-cart-page-strong\"><strong>Query about replace Includes Tax text in WooCommerce Cart page<\/strong> <\/h2>\n\n\n\n<p>Recently one of our client ask us to change the &#8220;Inclusive TAX&#8221; as &#8220;Inclusive GST&#8221; in cart and Checkout page. So we used a simple code which will be added in functions.php file of child theme to change the VAT to GST text. You can also change &#8220;ex VAT&#8221; tax in cart an checkout page to &#8220;ex GST&#8221; by adding second code in your functions.php file.<\/p>\n\n\n\n<p>You can also change &#8220;Inclusive VAT&#8221; tax to &#8220;Inclusive GST&#8221; on single total in cart and checkout page. if your TAX is inclusive of price and show as a single total on cart and checkout page, add below code in functions.php file. <\/p>\n\n\n\n<h3 class=\"has-medium-font-size wp-block-heading\" id=\"strong-if-your-tax-on-cart-and-checkout-page-is-as-single-total-then-copy-below-code-on-your-functions-php-file-strong\"><strong>If Your TAX on Cart and checkout page is as single total then copy below code on your functions.php file<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>add_filter( 'woocommerce_countries_tax_or_vat', function () {\n  return __( 'GST', 'woocommerce' );\n});<\/code><\/pre>\n\n\n\n<h3 class=\"has-medium-font-size wp-block-heading\" id=\"strong-similarly-if-the-tax-is-inclusive-or-exclusive-then-use-below-codes-as-required-strong\"><strong>Similarly if the TAX is inclusive or exclusive then use below codes as required.<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>add_filter( 'woocommerce_countries_inc_tax_or_vat', function () {\n  return __( 'GST', 'woocommerce' );\n});\n\nadd_filter( 'woocommerce_countries_ex_tax_or_vat', function () {\n  return __( 'GST', 'woocommerce' );\n});<\/code><\/pre>\n\n\n\n<h3 class=\"has-medium-font-size wp-block-heading\" id=\"strong-if-you-want-to-strong\"><strong>If you want to:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Change &#8220;inclusive TAX&#8221; to &#8220;Inclusive GST&#8221; on cart and checkout page<\/li>\n\n\n\n<li>Change &#8220;ex VAT&#8221; to &#8220;ex GST&#8221; on cart and checkout page<\/li>\n<\/ul>\n\n\n\n<h3 class=\"has-medium-font-size wp-block-heading\" id=\"strong-you-can-use-below-code-in-your-child-themes-functions-php-file-to-show-your-tax-name-strong\"><strong>You can use below code in your child theme&#8217;s functions.php file to show your TAX name.<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>function woo_rename_tax_inc_cart( $value ) {\n    $value = str_ireplace( 'Tax', 'GST', $value );\n    return $value;\n}\n<\/code><\/pre>\n\n\n\n<p class=\"has-text-color\" style=\"color:#f90404\">Please note : You can add any TAX name in above code to get the required tax name in cart and checkout page of woocommerce. <\/p>\n\n\n\n<h3 class=\"has-medium-font-size wp-block-heading\" id=\"strong-if-you-want-to-change-ex-vat-to-ex-gst-or-to-something-else-you-can-add-the-below-code-in-your-functions-php-file-strong\"><strong>If you want to change Ex VAT to Ex GST or to something else , you can add the below code in your functions.php file<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>add_filter( 'gettext', function( $translation, $text, $domain ) {\n\tif ( $domain == 'woocommerce' ) {\n\t\tif ( $text == '(ex. VAT)' ) { $translation = '(ex. GST)'; }\n\t}\n\treturn $translation;\n}, 10, 3 );<\/code><\/pre>\n\n\n\n<h2 class=\"has-medium-font-size wp-block-heading\" id=\"strong-update-replace-includes-tax-text-in-woo-commerce-cart-strong\"><strong>UPDATE : Replace Includes Tax text in WooCommerce Cart  <\/strong><\/h2>\n\n\n\n<p>Now you name the TAX text (Value) in tax class. So when you add the tax rate in TAX slab, you can give name to your TAX type which will show on front end. Check images below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"355\" src=\"https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-1024x355.jpg\" alt=\"replace Includes Tax text in WooCommerce Cart\" class=\"wp-image-3512\" srcset=\"https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-1024x355.jpg 1024w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-300x104.jpg 300w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-150x52.jpg 150w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-768x266.jpg 768w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-1536x533.jpg 1536w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-399x138.jpg 399w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-800x278.jpg 800w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-750x260.jpg 750w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds-1140x395.jpg 1140w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-name-scriptfeeds.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Replace Includes Tax text in WooCommerce Cart  :  Add the name of TAX on column<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"978\" height=\"550\" src=\"https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-978x550.jpg\" alt=\"replace Includes Tax text in WooCommerce checkout page\" class=\"wp-image-3513\" srcset=\"https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-978x550.jpg 978w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-286x161.jpg 286w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-144x81.jpg 144w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-768x432.jpg 768w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-1536x864.jpg 1536w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-399x224.jpg 399w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-800x450.jpg 800w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-750x422.jpg 750w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds-1140x641.jpg 1140w, https:\/\/scriptfeeds.com\/blog\/wp-content\/uploads\/2022\/05\/tax-slab-scriptfeeds.jpg 1920w\" sizes=\"(max-width: 978px) 100vw, 978px\" \/><figcaption class=\"wp-element-caption\">Same name will show on Cart and Checkout Page<\/figcaption><\/figure>\n\n\n\n<p><strong>To know how to add GST in WooCommerce.<\/strong> <a href=\"https:\/\/scriptfeeds.com\/blog\/development\/gst-billing-in-woocommerce\/\"><strong>You can read our this blog<\/strong><\/a>. So that all you need to do to replace Includes Tax text in WooCommerce Cart and Checkout Page. Let us know if you have any queries or Contact <strong><a href=\"https:\/\/scriptfeeds.com\/blog\/hire-us\/\" data-type=\"page\" data-id=\"3537\">our Developer team<\/a><\/strong> for help.<\/p>\n\n\n\n<p>Happy Coding!<\/p>\n\n\n<p>[caldera_form id=&#8221;CF60ca2e3ccf64f&#8221;]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article will guide you replace Includes Tax text in WooCommerce Cart &amp; Checkout Page. WooCommerce offers a strong and flexible Taxation system . You can implement almost any tax system in it. WooCommerce also offers lots of extension to increase features of TAX system in your website. WooCommerce globally consider TAX system as VAT, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3393,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jnews-multi-image_gallery":[],"jnews_single_post":{"subtitle":"","format":"standard","video":"","gallery":"","source_name":"","source_url":"","via_name":"","via_url":"","override_template":"0","override":[{"template":"1","single_blog_custom":"","parallax":"1","fullscreen":"1","layout":"right-sidebar","sidebar":"default-sidebar","second_sidebar":"default-sidebar","sticky_sidebar":"1","share_position":"top","share_float_style":"share-monocrhome","show_share_counter":"1","show_view_counter":"1","show_featured":"1","show_post_meta":"1","show_post_author":"1","show_post_author_image":"1","show_post_date":"1","post_date_format":"default","post_date_format_custom":"Y\/m\/d","show_post_category":"1","show_post_reading_time":"0","post_reading_time_wpm":"300","show_zoom_button":"0","zoom_button_out_step":"2","zoom_button_in_step":"3","show_post_tag":"1","show_prev_next_post":"1","show_popup_post":"1","number_popup_post":"1","show_author_box":"0","show_post_related":"0","show_inline_post_related":"0"}],"override_image_size":"0","image_override":[{"single_post_thumbnail_size":"crop-500","single_post_gallery_size":"crop-500"}],"trending_post":"0","trending_post_position":"meta","trending_post_label":"Trending","sponsored_post":"0","sponsored_post_label":"Sponsored by","sponsored_post_name":"","sponsored_post_url":"","sponsored_post_logo_enable":"0","sponsored_post_logo":"","sponsored_post_desc":"","disable_ad":"0"},"jnews_primary_category":{"id":"","hide":""},"footnotes":""},"categories":[75,86],"tags":[223,129,130],"class_list":["post-3107","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress","category-woocommerce","tag-replace-ex-vat-to-ex-gst-in-woocommerce","tag-replace-including-vat-tax-with-including-gst-in-woocommerce","tag-replace-vat-text-in-woocommerce"],"_links":{"self":[{"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/posts\/3107","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/comments?post=3107"}],"version-history":[{"count":0,"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/posts\/3107\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/media\/3393"}],"wp:attachment":[{"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/media?parent=3107"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/categories?post=3107"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/scriptfeeds.com\/blog\/wp-json\/wp\/v2\/tags?post=3107"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}