我试图将客户重定向到评论页面,客户必须登录或注册才能对产品进行评分,并且我能够在登录后将客户重定向到评论页面,但我无法将客户重定向回评论他们注册到网站后的页面,我找到了将客户重定向到仪表板的代码,但我不知道如何重定向到上一页。
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(true);
}
return $successUrl;
}