I've added a new content type, but I end up with a bunch of fields that are redundant. I would like to get read of:
- Menu settings (is there a way to hide it?)
- Locations (I'm using the location module for another content type, but I don't need it here)

Thanks for the help!

Comments

VM’s picture

you can try hiding the fieldsets with CSS. however, note that the fieldsets in question shouldn't be showing to regular users unless they have admin permission.

If you don't want to use CSS for this task, you can investigate using hook_form_alter in a custom module to disable the fieldsets.

chateaumaster’s picture

I will look into the hook_form_alter solution. Thanks a lot!