Skip to content

Instantly share code, notes, and snippets.

@WillBrubaker
Created July 1, 2015 18:30
Show Gist options
  • Save WillBrubaker/47e0995d9c25f87f0123 to your computer and use it in GitHub Desktop.
Save WillBrubaker/47e0995d9c25f87f0123 to your computer and use it in GitHub Desktop.
Change WooCommerce 'Free' price
add_filter( 'woocommerce_free_price_html', 'wooninja_modify_free_price' );
function wooninja_modify_free_price( $price ) {
//modify MY FREE PRICE to fit your needs :)
return 'MY FREE PRICE';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment