Created
August 15, 2016 10:01
-
-
Save steffenr/2015dca7caa86400c28b80b67dec660b to your computer and use it in GitHub Desktop.
Hide fieldset relations in taxonomy term forms for flat hierarchy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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