Thanks for the snippet.
I made two changes. One was to add the ‘function’, and the second was to change it so that no Admin fields are required vs making all Front End fields required.
add_filter('acf/prepare_field', 'not_required_in_admin');
function not_required_in_admin($field) {
if (is_admin()) {
$field['required'] = false;
}
return $field;
}
I am looking for this functionality as well. Has anyone come up with a good solution since?
The form changes regularly and has conditional questions that are required if they are shown – so I’d like to avoid custom scripts to do it. My client also doesn’t have the budget to pay me to do that.
Would there be a way to disable the required fields on the backend?