1
A
回答
0
在Magento你可以使用下面的方法之一。
選項A:
- 登錄到Magento管理區域
- 轉到
System => Configuration => Customer Configuration
Create New Account Options
選項卡,設置 「無」 爲 'Require Emails Confirmation
' 選項。Login Options
併爲'Redirect Customer to Account Dashboard after Logging in
'選項設置爲「否」。- 然後打開
\app\code\core\Mage\Customer\controllers\AccountController.php
你可以從這個改變:
$session->setBeforeAuthUrl(Mage::helper('customer')->getAccountUrl());
要這樣:
$session->setBeforeAuthUrl(Mage::getBaseUrl());
選項B:
創建與「customer_login」事件觀察者一起使用的自定義模塊。
選項C:
使用LOGI重定向免費的社區延伸。您可以從下面一個有想法:
相關問題
- 1. 註冊後自動登錄
- 2. 註冊後自動登錄
- 3. 註冊後自動登錄
- 4. 註冊後自動登錄
- 5. 在CAS註冊後自動登錄
- 6. 在Silex註冊後自動登錄
- 7. 在Magento結賬時禁用客戶登錄和註冊
- 8. 設計註冊自動登錄用戶
- 9. PHP註冊後自動登錄
- 10. 註冊後自動登錄PHP
- 11. Laravel 5.4 - 註冊後自動登錄
- 12. WordPress插件註冊後自動登錄
- 13. Symfony2註冊後自動登錄
- 14. .NET MVC 4註冊後自動登錄
- 15. wordpress註冊後自動登錄
- 16. Yii2註冊後自動登錄
- 17. 註冊後自動登錄 - WordPress的
- 18. Passportjs PREVENT註冊後自動登錄
- 19. 用戶是否應該在註冊後自動登錄?
- 20. 在Identityserver4註冊後自動登錄用戶
- 21. 如何在註冊後自動登錄用戶
- 22. Magento的客戶的註冊
- 23. Magento - 客戶註冊問題
- 24. 客戶登錄和註冊破
- 25. 如果客戶登錄wordpress,他會自動登錄到magento
- 26. Spring Security - 註冊用戶後自動登錄失效
- 27. 註冊後的自動登錄用戶Wordpress
- 28. 註冊後禁止用戶自動登錄
- 29. CreateUserWizard:註冊後,我希望用戶自動登錄
- 30. 用戶註冊後Django自動登錄(1.4)
由於網速慢,但我的問題是不是你有ANS –