Prevent users from reordering images by dragging after they are uploaded.
Disable image reordering:
// Lock image order—users cannot drag to reorder.
gform.addFilter('image_hopper_filepond_config', function(config, FilePond, $form, currentPage, formId, fieldId, entryId, files, inputField) {
config.allowReorder = false;
return config;
});
Related
- Javascript Actions/Filters — the filter hub
- Limit image file types — restrict accepted formats
- Disable instant upload — control when uploads happen