In my hook form alter, this is the date of birth array:
[Birthdate] => Array(
[#type] => fieldset
[#title] => Birthdate
[#weight] => 1
[profile_birthdate] => Array(
[#type] => date
[#title] => Birthdate
[#default_value] =>
[#description] => The content of this field is kept private and will not be shown publicly.
[#required] => 1
)
)
I have tried:
unset($form['Birthdate']['profile_birthdate']);
unset($form['Birthdate']);
and that does not work as I still get the "Please enter a valid date of birth" message. I want the field hidden and no message.