我想在我的网站中添加相同的登录表单
是否有可用的模块,或者我们可以为此进行其他编码更改 请给我一些建议
我想要这样的事情: http://livedemo00.template-help.com/magento_42632/
答案 0 :(得分:1)
您可以创建customer / form_login类型的块。使用XML如下
<block type="customer/form_login" name="customer_small_login" template="customer/form/small-login.phtml" />
您可以查看customer/form/login.phtml
表单,以获取您的阻止所期望的字段类型的参考。
然后,您可以使用
将其添加到侧边栏 <?php $this->getChildHtml('customer_small_login'); ?>
注意:确保将XML块添加为您希望包含它的侧边栏的子节点。