Custom target for variable price dynamic update
Implement a custom target for dynamically updating variable product prices.
add_filter('advanced_woo_discount_rules_custom_target_for_variable_product_on_qty_update', function ($target){
$target = 'div.product .single_variation_wrap .price';
return $target;
});