Remove discount for product

Remove discounts applied to specific products.

add_filter('advanced_woo_discount_rules_filter_passed', function($filter_passed, $rule, $product, $sale_badge, $product_table){
  if( class_exists('\Wdr\App\Helpers\Woocommerce')){
     $product_id = \Wdr\App\Helpers\Woocommerce::getProductId($product);
     if(in_array($product_id, array(1, 2, 3 ))){ // 1,2,3 is given product id
        return false;
     }
  }
  return $filter_passed;
}, 10, 5);