Can the function contact_user in contact.module be overridden?
I put function mytheme_contact_user in template.php but it didn't seem to do anything.

Comments

nevets’s picture

contact_user is an implementation of hook_user. While you can not directly override it, you can write a module that implements hook_form_alter. This module can then modify (add too or change existing elements) to the form in question.