我正在使用magento创建一个电子商务网站。目前,如果新用户注册该网址,则会重定向到我的帐户页面。我想在新用户注册我的网站后显示主页。
指导我这样做。
提前致谢
答案 0 :(得分:4)
虽然这是一篇旧文章,但我觉得这里提出了一个新的答案,因为许多其他答案明显没有遵循Magento最佳实践(例如:直接修改核心文件)或(虽然它有效)但它们不必要地重写了客户账户管理员。
以下解决方案完全通过使用观察者类来执行。以这种方式这样做将确保您的逻辑不会因升级Magento而丢失(如果您直接修改了核心类文件),Magento的核心开发团队也应该选择调整Mage_Customer_AccountController::createPostAction
方法,这些更改将在何时引入升级您的站点(不会重写控制器类文件)。
在下面的步骤中,根据需要创建任何目录以创建提到的文件。
第1步:定义模块
应用程序的/ etc /模块/ Stackoverflow_Question10470629.xml
<?xml version="1.0"?>
<config>
<modules>
<Stackoverflow_Question10470629>
<codePool>local</codePool>
<active>true</active>
</Stackoverflow_Question10470629>
</modules>
</config>
第2步:定义模块配置
应用程序/代码/本地/#2 / Question10470629的/ etc / config.xml中
<?xml version="1.0"?>
<config>
<modules>
<Stackoverflow_Question10470629>
<version>1.0.0</version>
</Stackoverflow_Question10470629>
</modules>
<global>
<models>
<stackoverflow_question10470629>
<class>Stackoverflow_Question10470629_Model</class>
</stackoverflow_question10470629>
</models>
</global>
<frontend>
<events>
<controller_action_postdispatch_customer_account_createPost>
<observers>
<stackoverflow_question10470629>
<type>singleton</type>
<class>stackoverflow_question10470629/observer_frontend</class>
<method>controllerActionPostdispatchCreatePostAction</method>
</stackoverflow_question10470629>
</observers>
</controller_action_postdispatch_customer_account_createPost>
<customer_register_success>
<observers>
<stackoverflow_question10470629>
<type>singleton</type>
<class>stackoverflow_question10470629/observer_frontend</class>
<method>customerRegisterSuccess</method>
</stackoverflow_question10470629>
</observers>
</customer_register_success>
</events>
</frontend>
</config>
第3步:定义观察者类
应用程序/代码/本地/#2 / Question10470629 /型号/观察员/ Frontend.php
<?php
/**
* All publicly accessible method names correspond to the event they observe.
*
* @category Stackoverflow
* @package Stackoverflow_Question10470629
*/
class Stackoverflow_Question10470629_Model_Observer_Frontend
{
/**
* @param Varien_Event_Observer $observer
*/
public function customerRegisterSuccess($observer)
{
/* @var $session Mage_Customer_Model_Session */
$session = Mage::getSingleton('customer/session');
// This event occurs within Mage_Customer_AccountController::createPostAction
// however it occurs before the controller sets it's own redirect settings.
// Therefore we set this flag to true now, and then within the postdispatch
// we'll redirect to our custom URL
$session->setData('customer_register_success', true);
}
/**
* @param Varien_Event_Observer $observer
*/
public function controllerActionPostdispatchCreatePostAction($observer)
{
/* @var $controller Mage_Customer_AccountController */
/* @var $session Mage_Customer_Model_Session */
$session = Mage::getSingleton('customer/session');
// We must test for a successful customer registration because they
// could have failed registration despite reaching postdispatch
// (for example: they used an existing email address)
if ($session->getData('customer_register_success')) {
$session->unsetData('customer_register_success');
$url = Mage::getBaseUrl();
$controller = $observer->getData('controller_action');
$controller->getResponse()->setRedirect($url);
}
}
}
答案 1 :(得分:2)
打开帐户控制器,然后在返回$ successUrl; 行之前添加代码 $ successUrl = Mage :: getBaseUrl(); 功能 _welcomeCustomer()
答案 2 :(得分:2)
登录后注册,注销和注册是magento中非常常见的问题。请找到下面的代码,它可以帮助您。
public function customerRegistration(Varien_Event_Observer $observer)
{
$_session = Mage::getSingleton('customer/session');
$_session->setBeforeAuthUrl(CustomUrl);
}
Customurl是您在注册后要重定向的网址。
如果您想在登录,注销和注册后为您的电子商务网站提供自定义网址重定向的完整解决方案。自定义重定向扩展可以帮助您。点击链接获取扩展名。 http://www.magentocommerce.com/magento-connect/custom-redirection.html
答案 3 :(得分:0)
首先检查登录后重定向用户的后端是否需要进行重新定位。 转到系统&gt;配置>在“客户端”选项卡下 - “客户端配置”&gt;登录选项&gt;选择否
默认功能是将用户重定向到登录前访问的最后/当前页面。在我看来,如果客户最终确定了让他采取行动和登录的产品交易,那么这应该是有用的。
答案 4 :(得分:0)
在客户帐户控制器中使用以下代码
查找函数_successProcessRegistration和
替换$url = $this->_welcomeCustomer($customer); // line 350
使用$url = Mage::getBaseUrl();
答案 5 :(得分:-1)
您可以覆盖AccountController,以便将客户重定向到您想要的页面。
如果您需要现成的解决方案,那么您可以尝试以下扩展:
http://www.magepsycho.com/custom-login-redirect-pro.html
答案 6 :(得分:-1)
转到您的客户AccountController:
aap->core->code->Mage->customer->controllers->AccountController.php
然后搜索_welcomeCustomer()
功能
替换此代码:
$successUrl = $this->_getUrl('*/*/index', array('_secure' => true));
使用:$successUrl = Mage::getBaseUrl();
此$successUrl
会在注册后将用户返回主页。