html-forms icon indicating copy to clipboard operation
html-forms copied to clipboard

Multi-file upload

Open arnelap opened this issue 6 years ago • 3 comments

Can we add the possibility to upload multiple files at once.

https://wordpress.org/support/topic/the-form-dont-save-the-image-upload/

arnelap avatar Sep 11 '18 05:09 arnelap

Hi, would be possible upload multiple images?

Thanks

arnadurlea13 avatar Sep 21 '18 17:09 arnadurlea13

I'm desperate for this feature.

ghost avatar Feb 11 '19 11:02 ghost

A working workaround is to create separate fields, the thing not working is uploading multiple files into a single field.

<p>
	<label for="my-form-PICTURE">Picture</label>
	<input type="file" name="PICTURE" id="my-form-PICTURE"	>
</p>
<p>
	<label for="my-form-ANOTHER_PICTURE">Another picture</label>
	<input type="file" name="ANOTHER_PICTURE" id="my-form-ANOTHER_PICTURE">
</p>

dannyvankooten avatar Dec 09 '19 14:12 dannyvankooten