4

我为我的 Magento 网站的主页创建了一个新的模板 phtml 文件 2columns-right-home.phtml。我想在这里提供登录表格。还有“创建新帐户”、“忘记密码”等链接。如何提供链接?

我尝试了以下方法:

<a href="<?php echo $this->getForgotPasswordUrl() ?>">Forgot password?</a>

但是该页面并未指向该链接。

4

3 回答 3

8

使用该getUrl函数获取模块控制器的forgotpassword操作链接(其恰好也是,阅读更多)。如此:accountcustomerfrontNamecustomer

<a href="<?php echo Mage::getUrl('customer/account/forgotpassword') ?>">Forgot password?</a>

更多信息getUrl

于 2012-10-03T07:08:25.997 回答
2
Mage::helper('customer')->getForgotPasswordUrl()

看着

var_dump(get_class_methods(get_class(Mage::helper('customer'))))
于 2013-08-16T10:39:06.280 回答
-3

忘记密码链接:

<a href="<?php echo Mage::getBaseUrl(); ?>customer/account/forgotpassword">Forget Password ?</a>

帐户创建链接:

<a href="<?php echo Mage::getBaseUrl(); ?>customer/account/create">Create Account</a>
于 2012-10-03T07:13:56.377 回答