View Single Post
  #211  
Old 11-03-2004, 12:13 PM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

^ Not positive this will work, but I think it will.

Open your cart.php

Find:

Code:
$smarty->display("customer/home_checkout.tpl");

Replace with:

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