Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function modname_form_alter(&$form, $form_state, $form_id) {
  2. switch ($form_id) {
  3.  
  4. // This is our form ID.
  5. case 'user_register_form':
  6. unset($form['#groups']['field_group_name']);
  7. unset($form['#fieldgroups']['field_group_name']);
  8. break;
  9. }
  10. return $form;
  11. }
  12.  
  13. field_group_hide_field_groups($form, array('field_group_name'));
  14.  
  15. hide($form['#fieldgroups']['field_group_name']);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement