I would like to show switch left position to user6 ie. right to user7 between frontpage and other pages.
Momentally I try to use this:
switch ($option) {
case 'com_frontpage': //show home page template
include_once ('front.php');
break;
default: // DEFAULT FOR ALL
include_once ('inner.php');
break;
But this doesn't work, because com_frontpage is not setted as frontpage... My frontpage is mos_tree component. So where is the problem. I must show as an frontpage, com_tree component. But when do you go deeper in this component (click on some category), it must be shown some other modules (not modules in right in left position (user6,user7)....
So this upper script should have additional parameter check. I suggest if is task empty, then is inner.php.... But how check component and task?!??!
Anny kind of help will be ...hmmm... great
