Opencart 1.5.1.3 redirect to the main page after login

I am working on Opencart 1.5.1.3.

After logging in, I will automatically go to the "My Account" page:

index.php?route=account/account 

Instead, I want to go to the main page:

 index.php?route=common/home 

Is this possible from the admin panel? If it weren’t for which code I needed to change?

+4
source share
1 answer

Open

 catalog/controller/account/login.php 

Find

 $this->redirect($this->url->link('account/account', '', 'SSL')); 

replace

 $this->redirect($this->url->link('common/home')); 
+6
source

Source: https://habr.com/ru/post/1379774/


All Articles