Hello:
i added this code for my variable items, in my functions.php
function bbloomer_variation_price_format_min( $price, $product ) {
$prices = $product->get_variation_prices( true );
$min_price = current( $prices[‘price’] );
$price = sprintf( __( ‘From: %1$s’, ‘woocommerce’ ), wc_price( $min_price ) );
return $price;
I’ve had a look at yor updates and seems you have sorted it here:
Does this mean i no longer need the above code???