Unfortunately, this code is already in my functions.php and does not change the word Free when it appears in the Cart and cart dropdown as per my screenshots. I cannot figure out what drives that.
I also have this code already in my function.php:
add_filter( ‘woocommerce_variable_free_price_html’,’hide_free_price_notice’ );
add_filter( ‘woocommerce_free_price_html’,’hide_free_price_notice’ );
add_filter( ‘woocommerce_variation_free_price_html’,’hide_free_price_notice’ );
/**
* Hides the ‘Free!’ price notice
*/
function hide_free_price_notice( $price ) {
return ”;
}
None of this hides the Free in the cart.
TIA,
Katie