Greetings EventON support staff,
Thank you for the ongoing assistance! We’ve had a request to change the text that appears when an event ticket price is set to 0, which currently says “Free!” to say “Dana-based” or something of that nature. Where in the theme configuration files would I find the file to edit to change the text that currently says “Free!”?
I believe it is a woocommerce setting
these guys say they have a free plugin to remove it
http://www.businesslegions.com/blog/2014/12/10/woocommerce-remove-free-price-plugin/
but I have not tested it nor am I endorsing it and I personally don’t recommend installing a plugin from just anyone-(what else is it adding to your site?) best to contact woocommerce support to find out how to change the word as that display is created by woo it is obviously somewhere in woocommerce files if you have the time to go through each file (who does?)
found this on a blog
add this to your functions.php file
function avf_woocommerce_free_price_html( $price, $instance ) {
$price = '<span class="amount">TEXT HERE!</span>';
return $price;
};
add_filter( 'woocommerce_free_price_html', 'avf_woocommerce_free_price_html', 10, 2 );
not sure if the above works or does it screw up the site- best to double check with woo