View Single Post
  #221  
Old 11-04-2004, 10:06 AM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

Sorry, gave you instructions for 3.5 instead of 4.0

Replace:

Code:
func_display("customer/home_checkout.tpl",$smarty);

With this:

Code:
if ($mode == "checkout") { func_display("customer/home_checkout.tpl",$smarty); } else { func_display("customer/home.tpl",$smarty); }
Reply With Quote