By emjayess on
I wish to use fieldsets within my node module's hook_form to organize sets of related form fields for that node/content type, but Drupal insists on placing any fieldset I generate under it's own "Advanced options" collapsible fieldset, which is obviously not where I want it to be.
Really frustrating... anyone know how to modify this behavior?
Comments
It's as if Drupal assumes
It's as if Drupal assumes any form fields contained within a fieldset must be "Advanced options", which seems like a really silly assumption to make.
What am I missing here?
--
Matthew J. Sorenson (emjayess)
d.o. | g.d.o.
Code
We are missing your code.
Please paste your implementation of hook_form between <?php ?> or <code> </code> tags.
--
The Manual | Troubleshooting FAQ | Tips for posting | How to report a security issue.
With something like this,
With something like this, the declared fieldset gets tucked away in "Advanced options" (e.g. along with 'Authoring info', 'Publishing options', and the like).
I don't want these considered advanced options, I want them to be considered normal, standard content fields -- yet grouped via
fieldset.--
Matthew J. Sorenson (emjayess)
d.o. | g.d.o.
same issue
Hi I have the same issue, did you fix it? If you did please let me know. Thanks.
I did
I actually just figured this out the other day -- by accident almost -- randomly checking thru some configurations (that weren't originally set by me)...
turned out to be a setting in the Form Filter configuration (admin/settings/formfilter)... Simplify Node Form set to enabled was the culprit, from the setting's own description...
HTH
--
Matthew J. Sorenson (emjayess)
d.o. | g.d.o.