I have a problem regarding how to convert a column inside a Gravity Form List field to a multi-file upload, I tried using the code below I found online and it is not converting the column input into a multi file upload.
I also tried using the plugin "Ajax Upload" but this only support single file upload.
add_filter( 'gform_multifile_upload_field', 'create_custom_file_upload_field', 10, 3 );
function create_custom_file_upload_field( $field, $form, $field_id ) {
$field = new GF_Field_FileUpload( array(
'id' => $field_id,
'multipleFiles' => true,
'maxFiles' => 5,
'maxFileSize' => '',
'allowedExtensions' => 'csv'
) );
return $field;
}
I should be able to make a column into a multi-file upload and the selected file URLs should reflect on the Gravity VIEW.
The only solution I'm aware of that supports including "repeating" multi file upload fields is my Gravity Forms Nested Forms. You would use this instead of a List field.