Skip to content

Disable image reordering

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;
});