
How to Add a Field to the Drupal Contact form
Ever wish you could use the existing Drupal Contact module as your sitewide contact form and just add a field or two? You can and it's really easy. All you need to do is create a new module and add the fields via the hook_form_alter() function. Here's an example of how we do it on metaltoad.com:
<?php /** * Implementation of hook_form_alter(). * @see http://api.drupal.org/api/function/hook_form_alter * We add a few custom fields to the default Drupal contact form */ function mtmcontact_form_contact_mail_page_alter(&$form, $form_state) { $form['company'] = array( '#title' => t('Your company'), '#type' => 'textfield', '#required' => true, ); $form['phone'] = array( '#title' => t('Your phone'), '#type' => 'textfield', ); // reorder the elements in the form to include the elements being inserted $order = array('contact_information', 'name', 'company', 'phone', 'mail', 'subject', 'message', 'copy', 'submit'); foreach($order as $key => $field) { $form[$field]['#weight'] = $key; } }
The second part keeps the fields in an explicit order and includes references to the form elements that are already created by the Contact module. To change the order, simply modify the array.
Want more awesome content like this? Check out our top 20 Drupal tips of all time!
Comments
You'll have to use hook_alter_message() to actually send the values of your new fields via email.
Fri, 05/29/2009 - 15:39
Muy buen tutorial, felicidades
Sun, 12/06/2009 - 00:52
Where in drupal, i mean in which file I have to do this changes. I am using drupal version 6. So please help me out.
Sorry for not putting home page, because i have my site on localhost. Trying to learn drupal.
Thanks
Sun, 05/02/2010 - 09:39
I have modified the default contact form with some additional fields
This information was really useful
Tue, 07/20/2010 - 18:58
As we get further along in the Drupal major revision timeline, it's worth noting that this tutorial is for Drupal 6.
Sat, 08/28/2010 - 06:03
Try http://drupal.org/project/contact_field instead.
Tue, 12/21/2010 - 17:00
Someone knows how to add a javascript function (es. onchange) to a the SELECT tag of Category filed in Drupal 6?
I'm trying with #attributes but seems not work..
Tue, 12/21/2010 - 18:14
onchange is a bit old-fashioned. I would recommend using jQuery to bind the change event. See http://api.jquery.com/change/ for some examples. This code would go in a javascript file, not in your form_alter.
Thu, 03/10/2011 - 13:27
WHat D version is this for? I'm just trying to add a "phone" field in D7 (first project since moveing from D6) and it won't work using hook_form_alter!
Mon, 03/14/2011 - 16:32
This code was written for Drupal 6. It's pretty obsolete now, I would recommend trying the webform module instead.
Mon, 06/06/2011 - 15:21
Hello,
how can I remove the message text area from contact form?
I need just: email, name, phone, city and drop down list.
thanks
Fri, 06/24/2011 - 14:04
Since this article is for drupal 6, how do I add another field in drupal 7?
Wed, 08/24/2011 - 08:45
it works well to add field for this form .but how can i save the field's data to database ?
Sun, 09/04/2011 - 12:14
I need to implement "Send yourself a copy." feature as we would find in the default contact form on Drupal 7 to new form I setup with Webforms module. Can someone be able to help me with this.
Tue, 09/13/2011 - 13:41
FYI, in drupal 7 the hook changes, you need to use:
hook_form_FORM_ID_alter()
So your function would look like:
function yourmodule_form_contact_site_form_alter(&$form, &$form_state, $form_id) {
// place code here.
}
Tue, 11/15/2011 - 16:32
Use something like this to send company and phone with mail message:
/**
* Implements hook_mail().
*/
function YOURMODULENAME_mail_alter(&$message) {
if ($message['id'] == 'contact_page_mail' ||
$message['id'] == 'contact_page_autoreply') {
$message['body'][] = t('company') . ': "' . $message['params']['company'] . '"';
$message['body'][] = t('phone') . ': "' . $message['params']['phone'] . '"';
. . .
}
}
Sat, 01/09/2016 - 09:26
I am using CCK email field that redirect to drupal default contact form. In that case the form changed from contact_page_mail to something different. How to find the form ID. I have just changed the code mentioned for default contact form to CCK email filed contact. everything is working fine but the information which is filled in the new fields is not sent on email. I am not able to get the exact form ID.
Can you tell me how find the form ID?
Tue, 02/18/2014 - 11:42
So how do I add the additional fields to the message text
Mon, 04/13/2009 - 21:57