Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created August 15, 2016 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steffenr/2015dca7caa86400c28b80b67dec660b to your computer and use it in GitHub Desktop.
Save steffenr/2015dca7caa86400c28b80b67dec660b to your computer and use it in GitHub Desktop.
Hide fieldset relations in taxonomy term forms for flat hierarchy
<?php
/**
* Implements hook_form_FORM_ID_alter().
*/
function mymodule_form_taxonomy_my_form_alter(&$form, FormStateInterface $form_state, $form_id) {
// Hide fieldset relations for flat hierarchy taxonomies.
$form['relations']['#required'] = FALSE;
$form['relations']['#access'] = FALSE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment