views:

40

answers:

2

While creating a (custom) content in Drupal, I have three vocabularies. But these make my create content page very heavy. I want to collapse the Vocubalary fieldset by default and want it to expand only if user chooses to.

+1  A: 

Big Autocomplete TAXonomy (BATAX) will probably do what you want.

Jeremy French
Not actually, for two fields I am already using Autocomplete fields. I just want the drop down Vocubulary which is opened by default should be closed by default.
abhishekgupta92
+3  A: 

If you mean that the taxonomy fieldset should be displayed as collapsed by default, you can achieve that by implementing hook_form_alter():

/**
 * Implementation of hook_form_alter().
 */
function yourModule_form_alter(&$form, &$form_state, $form_id) {
  // TODO: Adjust the form id according to your content type
  if ($form_id == 'yourContentType_node_form') {
    // Collapse 'Vocabularies' fieldset.
    $form['taxonomy']['#collapsed'] = TRUE;
  }
}
Henrik Opel