Hi,
I created a product class called "gadget" with additional fields like specs, features & info. I would like to display the content of each of this data field in a separate tab using quicktabs module when user clicks on an item of gadget type. I envision to create a view for specs, features & info and link each view to a tab of its own. I thought I could pass in some references as an arguments to the view so the correct content will get displayed in the corresponding tab.
I'm thinking I could check for the node type in the main content area such as:
if($node->type == "gadget"){
in here I would set href to something like /node/6?quicktabs_1=0#quicktabs-1 along with an argument that will either reference specs, features or info. But I'm not sure how to get at those properties in the $node variable and how to go about getting this to work.
Please tell me if I'm approaching this the right way or if someone knows of a better solution to this please do share as I'm new to Drupal/Ubercart.
