View Single Post
  #220  
Old 11-04-2004, 07:44 AM
 
adamsteinhoff adamsteinhoff is offline
 

Member
  
Join Date: Sep 2004
Posts: 19
 

Default

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
__________________
X-Cart 4.0.3
PHP 4.3.8
OS Linux
Perl 5.006001
XML 1.95.6
Reply With Quote