Hi,
You can modifiy "includes/common-validator.php" file to add some validation. I assume your "please select" text located on first value of "Drop down element", so it will have value = "1".
Now search around line 30 ~ 39 on "includes/common-validator.php" file, you'll find these code :
function validate_required($value){
$value = $value[0];
if(empty($value) && (($value != 0) || ($value != '0'))) ){ //0 and '0' should not considered as empty
return VAL_REQUIRED;
}else{
return true;
}
}
replace with this one
function validate_required($value){
$value = $value[0];
if((empty($value) && (($value != 0) || ($value != '0'))) || ($value == '1') ){ //0 and '0' should not considered as empty
return VAL_REQUIRED;
}else{
return true;
}
}