有没有办法根据当前客户是否属于某个群组,有条件地在我的magento布局中添加一个块?
或者这会在控制器中得到更好的处理吗?
答案 0 :(得分:16)
使用像customer_logged_in
和customer_logged_out
这样的东西会很不错但遗憾的是还不存在......
让我们复制相同的技术。首先,你需要在config中创建一个模块:
<frontend>
<events>
<controller_action_layout_load_before>
<observers>
<customer_group_observer>
<class>CUSTOM_MODULE/observer</class>
<method>beforeLoadLayout</method>
</customer_group_observer>
</observers>
</controller_action_layout_load_before>
</events>
</frontend>
在CUSTOM_MODULE_Model_Observer
课程中添加此方法:
public function beforeLoadLayout($observer)
{
$groupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
$group = Mage::getModel('customer/group')->load($groupId);
$observer->getEvent()->getLayout()->getUpdate()
->addHandle('customer_group_'.$group->getCode());
}
现在,在布局文件中,您可以使用客户组。
<layout>
<customer_group_General>
<reference name="content">
<!-- Add some blocks -->
</reference>
</customer_group_General>
</layout>
此外,此方法不允许您直接指定每页的块,但您可以解决此问题。下面是一个仅为产品页面创建新位置的示例,在所有其他页面上,更新应该没有效果并且会正常失败。
<layout>
<catalog_product_view>
<reference name="content">
<block type="core/text_list" name="group_container" />
</reference>
</catalog_product_view>
<customer_group_General>
<reference name="group_container">
<!-- Add some blocks -->
</reference>
</customer_group_General>
</layout>
答案 1 :(得分:0)
以下帖子将详细介绍您需要的功能:http://www.magentocommerce.com/boards/viewthread/83244/#t219147
在布局文件中使用customer_logged_in或customer_logged_out块来添加或删除元素,这些块最后被调用。
无需添加额外的扩展或代码,这是作为标准内置于Magento中的。
希望这有帮助,为我工作。 Magento版本:1.6 +