diff --git a/includes/wc-user-functions.php b/includes/wc-user-functions.php index be06b7799ea..5a16526cb48 100644 --- a/includes/wc-user-functions.php +++ b/includes/wc-user-functions.php @@ -404,8 +404,6 @@ function wc_get_customer_available_downloads( $customer_id ) { ", $customer_id, date( 'Y-m-d', current_time( 'timestamp' ) ) ) ), $customer_id ); if ( $results ) { - - $looped_downloads = array(); foreach ( $results as $result ) { if ( ! $order || $order->id != $result->order_id ) { // new order @@ -438,13 +436,6 @@ function wc_get_customer_available_downloads( $customer_id ) { $download_file = $_product->get_file( $result->download_id ); - // Check if the file has been already added to the downloads list - if ( in_array( $download_file, $looped_downloads ) ) { - continue; - } - - array_push( $looped_downloads, $download_file ); - // Download name will be 'Product Name' for products with a single downloadable file, and 'Product Name - File X' for products with multiple files $download_name = apply_filters( 'woocommerce_downloadable_product_name',