Unregistered user can add items to cart, but needs to register before placing an order. When user clicks on activation link, he is left with message like 'Your account is activated. Login to continue shopping'.
I would like to activate and login user, and redirect him to shopping cart. (lots of users just ignore the message and then complains that they cant place orders...)
My idea was to insert a variable in email activation url (to distinguish regular registration and registration during ordering), and in activation - if variable is set, do login and redirect.
Did manage to put variable in registration form (in checkout_register_form.php). There are activate and _sendMail functions in com_user/controler.php that should do the rest (found url and message in _sendMail() and apropriate place for login and redirect in activate() ), but changes in that script just won't do anything :(
Any other way or suggestion why this won't work? Or am I working on wrong file?