juanpr Posted September 2, 2014 Share Posted September 2, 2014 (edited) Good afternoon, can someone tell me how to redirect after registration to the index page? After registration a client does not automatically redirects to index of the web, remains in registration page.Thank you. 1.6.0.9 Edited September 2, 2014 by juanpr (see edit history) Link to comment Share on other sites More sharing options...
juanpr Posted September 3, 2014 Author Share Posted September 3, 2014 anyone with the same problem? Link to comment Share on other sites More sharing options...
NemoPS Posted September 3, 2014 Share Posted September 3, 2014 Actually, it should be redirected to the customer account page. To customize it, you have to amend the authcontroller.php file, specifically where you find Tools::redirect('index.php?controller='.(($this->authRedirection !== false) ? urlencode($this->authRedirection) : 'my-account')); and just leave index.php Link to comment Share on other sites More sharing options...
vekia Posted September 3, 2014 Share Posted September 3, 2014 it also redirects to cart when something is added to cart Tools::redirect('index.php?controller=order&multi-shipping='.(int)Tools::getValue('multi-shipping')); Link to comment Share on other sites More sharing options...
juanpr Posted September 3, 2014 Author Share Posted September 3, 2014 Actually, it should be redirected to the customer account page. To customize it, you have to amend the authcontroller.php file, specifically where you find Tools::redirect('index.php?controller='.(($this->authRedirection !== false) ? urlencode($this->authRedirection) : 'my-account')); and just leave index.php Thanks !! , it worked, I changed all the lines with that command and perfect Link to comment Share on other sites More sharing options...
juanpr Posted September 3, 2014 Author Share Posted September 3, 2014 it also redirects to cart when something is added to cart Tools::redirect('index.php?controller=order&multi-shipping='.(int)Tools::getValue('multi-shipping')); Solved, thanks! Link to comment Share on other sites More sharing options...
Recommended Posts