Subtotal condition compatibility for WooCommerce Multilingual Plugin

Ensure compatibility of subtotal conditions with the WooCommerce Multilingual Plugin.

add_filter('advanced_woo_discount_rules_converted_currency_value', function($value, $type){
	if(is_numeric($value) && !empty($value)) {
		$value = apply_filters( 'wcml_raw_price_amount', $value);
	}
	return $value;
}, 10, 2);