Template change code in the template I am wondering is it possbile to change the template in the template index.php depending what main menu title has been chosen. I tried following but it is not wokring, where is the problem.
So here if Itemid is 1 (frontpage it should use JavaBean template and otherwise rhuk_solarflare. What shoul I change?
<?php
switch($Itemid) {
case 1 :
$templatename=JavaBean;
break;
default :
$templatename=rhuk_solarflare;
break;
}
?> |