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);
}