我为我的 Magento 网站的主页创建了一个新的模板 phtml 文件 2columns-right-home.phtml。我想在这里提供登录表格。还有“创建新帐户”、“忘记密码”等链接。如何提供链接?
我尝试了以下方法:
<a href="<?php echo $this->getForgotPasswordUrl() ?>">Forgot password?</a>
但是该页面并未指向该链接。
我为我的 Magento 网站的主页创建了一个新的模板 phtml 文件 2columns-right-home.phtml。我想在这里提供登录表格。还有“创建新帐户”、“忘记密码”等链接。如何提供链接?
我尝试了以下方法:
<a href="<?php echo $this->getForgotPasswordUrl() ?>">Forgot password?</a>
但是该页面并未指向该链接。
使用该getUrl
函数获取模块控制器的forgotpassword
操作链接(其恰好也是,阅读更多)。如此:account
customer
frontName
customer
<a href="<?php echo Mage::getUrl('customer/account/forgotpassword') ?>">Forgot password?</a>
Mage::helper('customer')->getForgotPasswordUrl()
看着
var_dump(get_class_methods(get_class(Mage::helper('customer'))))
忘记密码链接:
<a href="<?php echo Mage::getBaseUrl(); ?>customer/account/forgotpassword">Forget Password ?</a>
帐户创建链接:
<a href="<?php echo Mage::getBaseUrl(); ?>customer/account/create">Create Account</a>