Created
July 1, 2015 18:30
-
-
Save WillBrubaker/47e0995d9c25f87f0123 to your computer and use it in GitHub Desktop.
Change WooCommerce 'Free' price
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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