Skip to content

Instantly share code, notes, and snippets.

@waako
Created April 8, 2014 09:32
Show Gist options
  • Save waako/10104389 to your computer and use it in GitHub Desktop.
Save waako/10104389 to your computer and use it in GitHub Desktop.
Hide/Change User Edit Profile form fields
<?php
/**
* Implements hook_form_user_profile_form_alter()
*
**/
function hamilton_trust_form_user_profile_form_alter(&$form, &$form_state, $form_id) {
unset($form['field_user_fieldname']);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment