View Single Post
  #298  
Old 02-10-2005, 10:38 AM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

Depending on your version of x-cart, you can open cart.php and edit the line that calls home_checkout.tpl

For 3.5.x

Code:
if (($mode == "friend_wl") || ($mode == "send_friend") || ($mode == "wlclearwl") || ($mode == "deletewl2cart") || ($mode == "add2wl") || ($mode == "wishlist") || ($mode == "addgc2wl")) { $smarty->display("customer/home.tpl"); } else { $smarty->display("customer/home_checkout.tpl"); }

For 4.x

Code:
if (($mode == "friend_wl") || ($mode == "send_friend") || ($mode == "wlclearwl") || ($mode == "deletewl2cart") || ($mode == "add2wl") || ($mode == "wishlist") || ($mode == "addgc2wl")) { func_display("customer/home.tpl",$smarty); } else { func_display("customer/home_checkout.tpl",$smarty); }
Reply With Quote