Created
July 18, 2014 15:40
-
-
Save DanielSantoro/7de13281665a7c70efe5 to your computer and use it in GitHub Desktop.
Only display minimum price for WooCommerce variable products
This file contains 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
/** | |
* Only display minimum price for WooCommerce variable products | |
**/ | |
add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); | |
function custom_variation_price( $price, $product ) { | |
$price = ''; | |
$price .= woocommerce_price($product->get_price()); | |
return $price; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In recent WC versions use
wc_price()
instead ofwoocommerce_price()