add_filter( 'woocommerce_format_price_range', 'dmm_variation_price_format_min', 9999, 3 );
function dmm_variation_price_format_min( $price, $from, $to ) {
return sprintf( _x( 'A partire da %1$s', 'Price range: from', 'dmm' ), is_numeric( $from ) ? wc_price( $from ) : $from );
}
Copia il codice nel file functions.php del tuo tema child attivo o utilizza il plugin Code Snippets.