Quote:
Originally Posted by Jon
^ 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");
}
|
Jon,
I don't see anything in my cart.php that looks like that, but I did find this:
Code:
func_display("customer/home_checkout.tpl",$smarty);
Do I need to do something with that?
Thanks,
Adam