Hi,
You can use this to show the lowest from price for that product, you will need to activate your child theme and inside the file called functions.php
please copy and paste this:
// Use WC 2.0 variable price format
add_filter( 'woocommerce_variable_sale_price_html', 'wc_wc20_variation_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'wc_wc20_variation_price_format', 10, 2 );
function wc_wc20_variation_price_format( $price, $product ) {
$min_price = $product->get_variation_price( 'min', true );
$max_price = $product->get_variation_price( 'max', true );
if ($min_price != $max_price){
$price = sprintf( __( '<span class="">From %1$s</span>', 'woocommerce' ), wc_price( $min_price ) );
return $price;
} else {
$price = sprintf( __( '<span class="">%1$s</span>', 'woocommerce' ), wc_price( $min_price ) );
return $price;
}
}
Thanks,
David.