I installed quick tabs to create folders for some of my views. The veiws all rely on the taxonomy being pulled from the URL. I have the views that I am using for Quick tabs placed in the page above the quick tabs folder for development and the views by themselves display fine. However I can't get the views to display under the tabs. Here is a example where you can see the views on top working correctly and the quick tabs below with no info at http://reasonme.com/drupal/case/18/17. Again all of these views are dynamically created via the id passed in the url. If I leave the argument filed in the Quick tabs settings blank I get nothing back, but if I put anything in the argument filed the view tries to generate the info but returns my default message of "there is no information for this company". so Perhaps it is an argument issue? I have tried
<?PHP
if(!$args[0]){
$args[0]=arg(1);
}
return $args;
?>
but that didn't work.
Any help is appreciated
Comments
Comment #1
break9 commentedsorry, the word filed is supposed to be field.
Comment #2
break9 commentedAnyone??
Comment #3
break9 commentedIt was a $args not being passed issue this is what i did to resolve it;
I pulled the variables from the parent into the view then pulled the first arg from the url and assigned it to $args. Seems to work.
Comment #4
break9 commented