Would it be possible to have a random tab being the top/active tab? The users on my site are new to Drupal and I am concerned that they will only look at the info displayed in the top tab(s) and never look at the others.

A random top tab would force them to do a little work...

Thanks,
Eric

Comments

pasqualle’s picture

Version: 5.x-1.x-dev » 6.x-2.x-dev
pasqualle’s picture

Version: 6.x-2.x-dev » 6.x-3.x-dev

Moving new features to 3.x version

iKillBill2’s picture

OMG, I want to this function badly...

reinvented’s picture

A quick hack to make the module select a random tab on each rendering (note that this will affect all of your Quicktabs, and is not intended to be a universal fix for this issue, just something to get you quickly where you need to go).

In quicktabs.module, replace:

$active_tab = _quicktabs_get_active_tab($quicktabs);

with:

$active_tab = array_rand($quicktabs['tabs']);
eL’s picture

I think, it would be nice do it same way like here: http://drupal.org/node/264299

Auto rotate tabs is working, next thing is randomized rotate. And with random tab selected on pageload it would be flawless :)

silverfly’s picture

subscribing - Perhaps we can have a D7 version as well? :)

AntiNSA’s picture

Issue summary: View changes

Has anyone found a way to do this ? This is a great feature and the 7x version cant be edited like this.

avpaderno’s picture

Status: Active » Closed (outdated)

I am closing this issue, since it's for a Drupal version no longer supported.