2011-11-05 59 views
4

我正在使用Opencart 1.5.1.3。Opencart 1.5.1.3登錄後重定向到主頁

在我登錄後我將自動轉到我的帳戶頁面:

index.php?route=account/account 

我希望它去,而不是主頁:

index.php?route=common/home 

這可能從管理面板?如果不是,我需要修改哪些代碼?

回答

6

打開

catalog/controller/account/login.php 

查找

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

代之以

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

感謝你變化不大 – air

+0

你可以請參閱並給我這個問題的HTTP相同的幫助://計算器.com/questions/8015765/opencart-1-5-1-3-display-special-prrice-with-start-date-end-date-at-product – air

+0

也可以在Opencart V2.3.0.2中使用。 –