Restrict the Image Hopper field to accept only JPG, PNG, and GIF images, blocking BMP, WebP, and HEIC uploads.
Limit uploads to JPG, PNG, and GIF only:
// Only accept JPG, PNG, and GIF uploads.
gform.addFilter('image_hopper_filepond_config', function(config, FilePond, $form, currentPage, formId, fieldId, entryId, files, inputField) {
config.acceptedFileTypes = ['image/png', 'image/jpeg', 'image/gif'];
return config;
});
Related
- Javascript Actions/Filters — the filter hub
- Disable instant upload — control when uploads happen
- Disable image reordering — lock image order