Skip to main content
Login Join
Snippet · PHP

Change WooCommerce “Free!” Price Text

Shared by Amit Dholiya · September 10, 2026 · @woocommerce_free_price_html

9 views
1 upvote
Back to Snippets

Replace WooCommerce’s default “Free!” text with your own custom text, such as “Complimentary” or “No Charge”.

Steps

  1. Add the code below to your theme’s functions.php.
  2. Change the text to whatever you want.
  3. Save and check products with a price of 0.
/**
 * Change WooCommerce "Free!" price text
 */
function custom_woocommerce_free_price_text( $price ) {
    return 'Complimentary';
}

add_filter( 'woocommerce_free_price_html', 'custom_woocommerce_free_price_text' );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments