View Single Post
  #3  
Old 12-26-2007, 10:43 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default Re: Discriminating Against Static Pages

Open pages.php

FIND:

func_display("customer/home.tpl",$smarty);

REPLACE WITH SOMETHING SUCH AS:

if ($pageid == "X") {
func_display("customer/home1.tpl",$smarty);
} elseif ($pageid == "X") {
func_display("customer/home2.tpl",$smarty);
} else {
func_display("customer/home.tpl",$smarty);
}

Replace "X" with the numeric pageid.
Reply With Quote