Quantity based get discount details
Provide details on discounts based on quantity purchased.
add_action('woocommerce_get_price_html', function($html, $product) {
$quantity = 5;
$discount_details = apply_filters('advanced_woo_discount_rules_get_product_discount_details', false, $product, $quantity); // it's product object for 3rd parameters
if ($discount_details !== false) {
print_r($discount_details); // If product has discount get the discount details
}
return $html;
}, 10, 2);