Check for a correct answer
add_filter(‘frm_validate_field_entry’, ‘check_correct_answer’, 10, 3); function check_correct_answer( $errors, $posted_field, $value ) { $target_field_id = 1248; // change 1248 to the ID of the field to check $expected_answer = ‘Answer 1’; // change ‘Answer 1’ with the expected answer if ( $target_field_id…Continue reading