1

我想在我的网站中添加相同的登录表单

是否有任何可用的模块,或者我们可以对此进行其他编码更改,请给我一些建议

我想要这样的东西:http: //livedemo00.template-help.com/magento_42632/

4

1 回答 1

1

您可以创建一个类型为 customer/form_login 的块。使用 XML 如下

<block type="customer/form_login" name="customer_small_login" template="customer/form/small-login.phtml" />

您可以查看customer/form/login.phtml表格以了解您的区块所期望的字段类型。0

然后,您可以使用将其添加到侧边栏

<?php $this->getChildHtml('customer_small_login'); ?>

注意:确保您将 XML 块添加为您希望将其包含在其中的侧边栏的子节点。

于 2013-03-14T10:57:57.857 回答