Ok, so far having a goodn old look seems class.vaildator is what i needed to edit.
The exact part i need is as follows:-
}
function is_phone($phone) {
$stripped=eregi_replace("(\(|\)|\-|\+)","",ereg_replace("(+)","",$phone));
return (!is_numeric($stripped) || ((strlen($stripped)13)))?false;
}
What i needed was to edit the value so the vaildation didn't look to see if the value input in the text field was numeric. so this is the replacement text you need.
}
function is_phone($phone) {
$stripped=eregi_replace("(\(|\)|\-|\+)","",ereg_replace("(+)","",$phone));
return ( ((strlen($stripped)13)))?false;
}