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
Hello,
i’m trying to perform a validation on a field and in my functions.php I have the following code:
add_filter('acf/validate_value/name=initial_pos_val', 'my_validate_function', 10, 4);
function my_validate_function($valid, $value, $field, $input) {
$valMin = $_POST['acf']['field_5abca98844f1c'];
$valInicial = $_POST['acf']['field_5abcb00ba1ff6'];
if ($valInicial < $valMin ) {
$valid = "Error: The value is not allowed.";
}
return $valid;
}
All these fields are inside the same field group.
This is not performing the validation I want.
Can someone help please?
Thank you.
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.