Convert fixed discount price example
Provide an example of converting fixed discount prices.
/**
* @param int|float $value Fixed discount price (in base curreny)
* @param string $type Discount type.
*/
add_filter('advanced_woo_discount_rules_converted_currency_value', function($value, $type) {
// here you can update price ($value) based on the current currency
return $value;
}, 100, 2);