Righto, I've found what I needed to do. If anyone else wants to achieve this, do as follows:
Open up your index.php and ind the following line (around 130ish):
Code:
$cur_template = $mainframe->getTemplate();
And replace with this (I've included the same line but commented out):
Code:
//$cur_template = $mainframe->getTemplate();
if ($option == "com_frontpage"){
$cur_template = "TEMPLATE_NAME";
} else {
$cur_template = $mainframe->getTemplate();
} This code determines whether the user is viewing the frontpage or not, and the displays a different template for that page only...
Let me know if you need a hand getting this to work
