Skip to content

Instantly share code, notes, and snippets.

@heddn
Last active December 15, 2015 18:30
Show Gist options
  • Select an option

  • Save heddn/5304498 to your computer and use it in GitHub Desktop.

Select an option

Save heddn/5304498 to your computer and use it in GitHub Desktop.
Site-wide Contact Form simplification
/**
* Implements hook_form_FORM_ID_alter().
*/
function example_form_contact_site_form_alter(&$form, &$form_state, $form_id) {
$form['cid']['#access'] = FALSE;
$form['copy']['#access'] = FALSE;
$form['copy']['#default_value'] = TRUE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment