Hi,

I have created a new content type : "Formation".
It contains a title, a body, a level and a duration.
I have also made 3 views : one gives me only the body, another the level and the last one gives me the duration.
These views are combined to do a quicktab : "Formations Tabs"

What I want is : when I click on a formation content type I want to see first and only "Formation Tabs" (I don't want to see the content because it's diplayed by the differents tabs.

Can someone tells me how to do that?

Comments

pasqualle’s picture

create a node-formation.tpl.php template
and use something like this:

$qtid = 42; // write here your quicktabs id.
$quicktabs = quicktabs_load($qtid);
print theme('quicktabs', $quicktabs);

#332895: render quicktab programatically

SophieG’s picture

Thank you !

netw3rker’s picture

Issue summary: View changes
Status: Active » Closed (fixed)