How to validate the checkboxes to select only one in wordpress contact form 7? I have written the following code in functions.php
function custom_cf7_required_check_filter($result, $tag) {
$val = $_POST['Yes'];
$opts = strpos($val, ",");
if($opts != false){
$result['reason']['Yes'] = "True";
}else{
$result['reason']['Yes'] = "False";
}
return $result;
}
add_filter('wpcf7_validate_checkbox', 'custom_cf7_required_check_filter', 10, 2);
Why not use contact form 7 inbuilt validation? Set it as required…