Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created February 13, 2025 17:21
Show Gist options
  • Save hivepress/bb5c7a281ebee8cbd94c540122e4211a to your computer and use it in GitHub Desktop.
Save hivepress/bb5c7a281ebee8cbd94c540122e4211a to your computer and use it in GitHub Desktop.
Require uploading at least one image for requests #hivepress #requests
<?php
add_filter(
'hivepress/v1/forms/request_update/errors',
function( $errors, $form ) {
$request = $form->get_model();
if ( $request && ! $request->get_images__id() ) {
$errors[] = 'Please upload at least one image.';
}
return $errors;
},
100,
2
);
add_filter(
'hivepress/v1/forms/request_update',
function( $form ) {
$form['fields']['images']['statuses']['optional'] = null;
return $form;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment