Remove filter woocommerce_add_cart_item_data while process auto add

add_filter('advanced_woo_discount_rules_free_product_cart_item_data', function ($cart_item_data){
    remove_all_filters('woocommerce_add_cart_item_data');
	
    return $cart_item_data;
});