Fix for Remove 'Vocabularies' fieldset

  1. /**
  2.  * Implementation of hook_form_alter().
  3.  */
  4. function mymodule_form_alter(&$form, &$form_state, $form_id) {
  5.   if ($form_id == 'mobileapp_node_form') {
  6.     // Remove 'Vocabularies' fieldset.
  7.     $form['taxonomy']['#type'] = 'markup';
  8.   }
  9. }

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.