Repository Forums Support WooCommerce Extended Coupon Features PRO Change FREE in WooCommerce Cart Reply To: Change FREE in WooCommerce Cart

#3762
Soft79
Keymaster

Make sure you are using a child theme.

Paste the following in functions.php of your child theme:


add_filter( 'wjecf_free_cart_item_price', function() { return 'Bonus!'; } );
add_filter( 'wjecf_free_cart_item_subtotal', function() { return 'Bonus!'; } );

This will change the text to Bonus!