我可以调用magento登录并将页面注册到bootstrap模式吗?

时间:2016-05-18 04:38:25

标签: bootstrap-modal magento-1.9

我是否可以调用magento登录并将页面注册到引导模式中,当客户在购物车中添加产品而不登录模态弹出窗口而不是登录页面时?

1 个答案:

答案 0 :(得分:0)

默认情况下,Magento有一个迷你登录表单,我们可以在页面块的任何位置使用它。 现在,我将通过几个简单的步骤在页面标题中添加这个迷你登录表单。

首先,我们要为登出客户添加登录表单块到标题。为此,我们可以使用主题的local.xml文件。

只需将以下代码段添加到我们主题的local.xml文件中。

<customer_logged_out>
 <reference name="header">
 <block type="customer/form_login" name="header_customer_form_mini_login" template="customer/form/mini.login.phtml"/>
 </reference>
 </customer_logged_out>

然后在我们模板文件的标题部分调用此登录表单。

<?php echo $this->getChildHtml('header_customer_form_mini_login') ?>

同样适用于您必须创建mini.register.phtml文件的注册表单 使用register.phtml代码并在上面的代码中更改登录以注册