In order to add support for vertical tabs (in D7 is a core feature and in D6 with vertical tabs module) is needed to add next property to fieldsets for the node type form and node form.
'#group' => 'additional_settings'.
This change is needed for D7 (core vertical tabs) and D6 (with vertical tabs module)
Thank you.

Comments

dave reid’s picture

Note the patch should use a group value of "additional_settings" and not "additional settings"

jcmarco’s picture

StatusFileSize
new983 bytes
dave reid’s picture

Status: Needs review » Reviewed & tested by the community

Looks good to me. One small step closer to being Drupal 7 ported. :)

jcmarco’s picture

StatusFileSize
new1.14 KB

Additional patch to add vertical support for the comment form.

This way you can add a form_alter for $form_id = 'comment_form'
$form['#pre_render'][] = 'vertical_tabs_form_pre_render';
And have all the notifications and subscriptions options for comment forms in
vertical tabs as well.

jcmarco’s picture

Version: 6.x-2.x-dev » 6.x-4.x-dev
StatusFileSize
new983 bytes

This patch adds support for Vertical Tabs in the node edit forms.

For D7 that already has the vertical tabs integrated, this patch is mandatory to add VT integration,
and in the case of D6 if you have the vertical tabs module then it will be integrated with vertical tabs.

It was updated for 6.x-4.x release

develcuy’s picture

Status: Reviewed & tested by the community » Closed (works as designed)

Patch at #5 is no longer needed.

Patch at #4 is a nice enhancement but new features should be addressed to Drupal 7. You are welcome to reopen this ticket to send a new patch for D7.