Tickets priced at $0 show up as Free! on single event pages. This is going to convey the wrong idea to our users, as the event is NOT free, but is rather the responsibility of each person. Can I either get rid of this text, or change to to say something like “Your Responsibility”? Thanks!
PS I tried this in my functions.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 ”;
}