Skip to content

Instantly share code, notes, and snippets.

@Veesibility
Veesibility / woocommerce-min-price.php
Last active August 29, 2015 14:13
Woocommerce - Show min price including Tax for variations rather than Min/Max Prices
/** This code should be added to functions.php of your theme **/
/* Woocommerce - Show min price including Tax for variations rather than Min/Max Prices */
add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2);
function custom_variation_price( $price, $product ) {
$price = '';
$price .= woocommerce_price($product->get_price_including_tax());