View Single Post
  #428  
Old 07-27-2005, 12:21 PM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

gbanse: Great, no prob.

Mr. Bob: Thanks, I haven't seen an order from you yet

Tuner:

These additions were left out because we wanted to provide the easiest install process as possible to avoid upgrade issues and customer difficulties.

2) You should be able to accomplish this by editing register.php. Not sure if this will work, but you can try it (this is for 4.x):

Open /register.php

FIND:

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

REPLACE WITH:

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