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.
|