Hello,
I would like to reinforce the minimum size of images to be uploaded in a form, say to 1200 x 730.
How can I validate this before the form is submitted?
Many thanks, Dasha
Hello,
I would like to reinforce the minimum size of images to be uploaded in a form, say to 1200 x 730.
How can I validate this before the form is submitted?
Many thanks, Dasha
We currently don't have any way to do this, as our file upload utility is just a basic HTML one, and files aren't uploaded until the form is submitted. You could, once the form is submitted, wait for the upload, test to see its size using your own custom PHP, and return an error if it doesn't fit your needs.
Thank you David, I will look into it.