Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は Opencart 1.5.1.3 に取り組んでいます。
ログインすると、自動的にマイ アカウント ページに移動します。
index.php?route=account/account
代わりにホームページに移動したい:
index.php?route=common/home
これは管理パネルから可能ですか? そうでない場合、どのコードを変更する必要がありますか?
開ける
catalog/controller/account/login.php
探す
$this->redirect($this->url->link('account/account', '', 'SSL'));
と置換する
$this->redirect($this->url->link('common/home'));