View Single Post
  #470  
Old 06-20-2006, 12:09 PM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

Quote:
Originally Posted by taltos1
Hello! I have a question.
How can I get it so that when they click on "modify" address in EZcheckout only, they stay in that area, but I still have the standard Xcart page if a customer is looking at their profile etc..

Try this:

Open register.php

FIND:

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

Replace with:

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