Woocommerce CSV importer – Resume Feature if(!function_exists(‘wce_gallery_resume’)){ function wce_gallery_resume($post_id){ $files = array(); $check_image = get_post_meta($post_id, ‘_product_image_gallery’, true); $check_image = is_array($check_image)?$check_image:explode(‘,’,$check_image); if(!empty($check_image)){ foreach($check_image as $image){ $i = basename(get_post_meta($image, ‘_wp_attached_file’, true)); $files[$i] = $image; } } return $files; } } How to use this? Locate this file “include/woocommerce-csvimport-functions.php” Locate function “woocsv_import_products_from_csv” Locate this line “if ( isset( […]