Repository › Forums › Support › WooCommerce Extended Coupon Features PRO › Change FREE in WooCommerce Cart › Reply To: Change FREE in WooCommerce Cart
September 11, 2018 at 8:54 am
#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!