You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I dont want the customer to have the ability to change their own shipping information, but with the currect CCP setup, as soon as they log in they have the update window. Is there a way to redirect the customer to the categories page directly, instead of the update customer account page?
Offline
Hi Jason,
Could you please post your changes?
I think this is a very good idea.
Offline
Hi,
I was looking to do this as well, but I've had a look through my ccp51 folder and couldnt find the file ste_custacct_proc, I'm not to sure if the UK ccp has this file, does anyone know?
Cheers ;-) ,
Steve
Offline
Steve,
It's a routine called "ste_custacct_proc" inside the module called "ste_custacct.pl" in your modules directory.
Offline
Open ste_custacct.pl in the cgi-bin/library/modules folder. In the first section you will see Ste_Custacct_Proc, and about 10-12 lines down you will see...
######### ######### Set the customer account variable and re-establish our ######### system variables and common URLs using this new info. ######### } else { $overwrite_usr_cookie = "Y"; $fd_pg = "ste_custacctupd"; $fd_act = "$fd_custacct_id"; $fd_aff_logout = "Y"; &vars_set; } ######### End of if statement.
Change...
$fd_pg = "ste_custacctupd";
To This...
$fd_pg = "ste_store";
This will redirect them to the store categories page as soon as they log in.
Offline