Hello, I am in desperate need to redirect my user into his/her account right after they register. I have tried the following to no avail:
Open the file:
components/com_alpharegistration/controller.php
Then comment out the line: $this->setRedirect('index.php', $message);
and add this after it -
//$this->setRedirect('index.php', $message);
$usersipass['username'] = $user->get('username');
$usersipass['password'] = $password;
$mainframe->login($usersipass);
$mainframe->redirect( 'index.php' );
Any assistance would be immensely appreciated!
Thank you