Home › Forums › Feature Requests › Validation of a field based on the value of another field › Reply To: Validation of a field based on the value of another field
For others looking for this, here is some example code
add_filter('acf/validate_value/key=field_56e069e986d6f', 'my_validate_function', 10, 4);
function my_validate_function($valid, $value, $field, $input) {
$other_field_key = 'field_56e06fe24d3e7';
$other_value = $_POST['acf'][$other_field_key];
// now you can do validation based on the other value
return $valid
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.