当“客户”完成在我的magento网站上注册时,我几天以来一直在尝试更改重定向。实际上,注册完成后,您将重定向到您的帐户。我只想重定向到 index.php (我网站的主页)。我是新手,我只想更改几行代码。例如,我将无法创建事件。
有人能帮我吗 ?
我认为页面是 AccountController.php 和代码:
protected function _welcomeCustomer(Mage_Customer_Model_Customer $customer, $isJustConfirmed = false)
{
$this->_getSession()->addSuccess(
$this->__('Thank you for registering with %s.', Mage::app()->getStore()->getFrontendName())
);
$customer->sendNewAccountEmail(
$isJustConfirmed ? 'confirmed' : 'registered',
'',
Mage::app()->getStore()->getId()
);
$successUrl = Mage::getUrl('/*/*/index', array('_secure'=>true));
if ($this->_getSession()->getBeforeAuthUrl()) {
$successUrl = $this->_getSession()->getBeforeAuthUrl(false);
}
return $successUrl;
}
我试图改变这一行:
$successUrl = Mage::getUrl('/*/*/index', array('_secure'=>true));
至
$successUrl = Mage::getUrl('index.php', array('_secure'=>true));
但什么也没发生……