Replace WooCommerce’s default “Free!” text with your own custom text, such as “Complimentary” or “No Charge”.
Steps
- Add the code below to your theme’s
functions.php. - Change the text to whatever you want.
- 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' );