The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
79 views

How do I add a menu subtitle to field sets displayed as vertical tabs?

I have formatted my field sets in a form builder function to display as vertical tabs. Here's a snippet of my code. It works fine: $form['vertical_tabs'] = array( '#type' => 'vertical_tabs', ...
0
votes
1answer
72 views

Node Add / Edit Options Vertical Tab Problem

I am running Drupal 7.19. For just one of my content types -- the built-in Article content type -- the node option vertical tabs at the bottom of the add / edit form are not displaying correctly. As ...
0
votes
0answers
85 views

Drupal 7 vertical tabs broken

For some reason, the vertical tabs stop working for me with Drupal 7. Previously, it works well for Omega sub-theme settings overlay screen. Some debugging reveals that the following piece of code in ...
0
votes
1answer
49 views

Reordering vertical tabs

Is it possible to reorder vertical tabs in the node edit page? There are certain buried tabs that I am constantly needing to switch to, and it would make my life much easier (and that of my users!) ...
1
vote
1answer
135 views

How to reorder vertical tabs by weight in Drupal 7?

I have some vertical tabs I am trying to reorder and the dpm()'d weights are not matching the visual output. Can someone explain this or point me to the right documentation on how weights and vertical ...
0
votes
0answers
41 views

webforms submit is not triggered if form is loaded in vertical tabs

So I have multiple webforms and I want to show all the forms on a single page using vertical tabs. This is what I have so far /** * Implements hook_menu(). */ function example_contact_menu() { ...
1
vote
0answers
78 views

Conflict with Vertical tabs module when inserting a jwyswiyg editor

We have created a custom module to control/insert the jwysiwyg editor onto text areas. We would use wysiwyg module, however, we had conflicts with regards to custom plugins. Everything is working ...
2
votes
0answers
158 views

Vertical Tabs in Panel Pages

I am trying to have three forms available to the public on my site and would love to have them configured in in the vertical tabs layout. Initially I was going to have them available through ...
1
vote
1answer
394 views

How to port vertical tabs functionality for custom node module to Drupal 7?

I have a custom module (written for Drupal 6) which defines a new content type. In Drupal 6 I have used several fieldsets and Vertical Tabs module to have the custom node form more clearly laid out. ...
1
vote
1answer
2k views

Vertical Tabs in Front End (Drupal 7)

I am trying to use Vertical Tabs on the front end of my site. Normally, I would just add a jQuery plug-in to my theme. However, vertical tabs are built into Drupal 7, so it seems silly to use a ...
3
votes
1answer
634 views

How can I change the order of vertical tabs in Drupal 7?

More specifically, I am using Location in Drupal 7 to allow people to add location to nodes, but I want it to appear at the top of the vertical tabs fieldgroup.
1
vote
1answer
92 views

The vertical tabs don't show when is one vocabulary

I am working in Drupal 6, and I am using the Hierarchical select. If my taxonomy consists in two or more vocabularies associated to a content type, the vocabulary shows into vertical tabs but if my ...
3
votes
3answers
1k views

Vertical Tabs for node Content?

I would like to basically make a node with some tabs on the left that switch what's being viewed on the right. I can structure the content however I'd like since it's a node; is there a way to simply ...
3
votes
1answer
621 views

Set URL Fragment based on which Vertical Tab clicked?

Would it be possible for me to have the URL of a given page change depending on what Vertical Tab the user clicks on the page? For example, when a user is on a complex node form on my site, there are ...