Guest User

Untitled

a guest
Jun 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. mytheme_form_alter(&$form, DrupalCoreFormFormStateInterface $form_state, $form_id) {
  2.  
  3. // do some checks here, form id, user role, and any other check you'd like
  4. // and if true or false hide fields
  5.  
  6. $form['field_name']['#access'] = FALSE;
  7. $form['field_name']['#required'] = FALSE;
  8.  
  9. }
Add Comment
Please, Sign In to add comment