Good morning, hope someone can help me!
how can i limit this code to a single category of variable products?
add_filter( 'woocommerce_variable_price_html', 'bbloomer_variation_price_format_min', 9999, 2 );
function bbloomer_variation_price_format_min( $price, $product ) {
$prices = $product->get_variation_prices('max');
$min_price = ($product->get_variation_price('max'))/1000; // Max price
$price = sprintf( __( 'A partire da: %1$s al gr', 'woocommerce' ), wc_price( $min_price ) );
return $price;
}