By cschults on
Currently, only staff can create and edit content, which has a controlled taxonomy. We're considering allowing users to create content, however we don't want them editing the taxonomy of a node. I can't seem to find a way to control the permissions of this field for the edit form. Am I missing something or do I need to do this using the API in my theme?
Comments
hook_form_alter()
Create a custom module, use hook_form_alter() to change the['#access'] parameter of the taxonomy fields. Changing it within the theme API is not a good way to go about it.
http://api.drupal.org/api/drupal/developer--topics--forms_api_reference....
Yes, module
Thanks theabacus, I actually meant "module" where I'm already using the hook_form_alter function for other purposes. I just thought it odd that this wasn't configurable and thought I missed it somewhere in the admin interface.