Change the discounted price of product

Adjust the discounted price of a product.


/**
 * @param $discount_prices array
 * @param $product object
 * @param $quantity int
 * @param $cart_item array
 * @return array
 * */
add_filter('advanced_woo_discount_rules_discount_prices_of_product', function ($discount_prices, $product, $quantity, $cart_item){
    //FOR CHANGING DISCOUNTED_PRICE you can change it in $discount_prices['discounted_price']
    // return false for do not apply discount
    
    return false;
}, 10, 4);