To show the custom price for dynamically change quantity

Dynamically display custom prices based on quantity changes.

add_filter('advanced_woo_discount_rules_custom_target_for_simple_product_on_qty_update', function ($target){
	$target = 'div.btn-price';
	return $target;
}, 10);