我正在寻求增强Magento中的分层导航。
目前,分层导航中使用的属性无法分组,这意味着如果您有多个逻辑上属于一个组的属性(即属性“高度”,“宽度”和“深度”,即“维度” ,“颜色”和“纹理”属于“外观”部分。)
我认为这会增强用户的可用性和导航。
在我开始为此开发一个模块之前,我想知道是否有人为magento遇到这样的事情,如果没有,你有没有提示如何做到这一点?
约瑟夫
答案 0 :(得分:5)
我为此创建了一个模块。以下是我所做的更改:
MYNAME /导航/目录/型号/ Layer.php:
class MyName_Navigation_Catalog_Model_Layer extends Mage_Catalog_Model_Layer {
public function getFilterableAttributes()
{
$setIds = $this->_getSetIds();
if (!$setIds) {
return array();
}
$collection = Mage::getResourceModel('catalog/product_attribute_collection')
->setItemObjectClass('catalog/resource_eav_attribute');
$collection->addSetInfo(true);
$collection->getSelect()->distinct(true);
$collection
->setAttributeSetFilter($setIds)
->addStoreLabel(Mage::app()->getStore()->getId())
->setOrder('position', 'ASC');
$collection = $this->_prepareAttributeCollection($collection);
$collection->load();
return $collection;
}
}
我只是用Mage_Catalog_Model_Layer重写了被覆盖的函数,添加了这行:
$collection->addSetInfo(true);
这可以确保在我需要时加载组数据。
接下来的两项更改只允许您访问数据。
MYNAME /导航/目录/型号/层/ Attribute.php:
class MyName_Navigation_Catalog_Model_Layer_Filter_Attribute extends Mage_Catalog_Model_Layer_Filter_Attribute {
public function getGroupName($setId = 4) {
$attribute = $this->getAttributeModel();
$group_id = $attribute->getData('attribute_set_info/' . $setId . '/group_id');
$group = Mage::getModel('eav/entity_attribute_group')->load($group_id);
$group_name = $group->getData('attribute_group_name');
return $group_name;
}
}
MYNAME /导航/目录/型号/层/ Item.php:
class MyName_Navigation_Catalog_Model_Layer_Filter_Item extends Mage_Catalog_Model_Layer_Filter_Item {
public function getGroupName()
{
return $this->getFilter()->getGroupName();
}
}
MYNAME /导航/目录/砌块/层/过滤/ Attribute.php:
class MyName_Navigation_Catalog_Block_Layer_Filter_Attribute extends Mage_Catalog_Block_Layer_Filter_Attribute {
public function getGroupName() {
return $this->_filter->getGroupName();
}
}
告诉magento使用我的模块而不是核心文件。 MYNAME /导航的/ etc / config.xml中
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<MyName_Navigation>
<version>0.1.0</version>
</MyName_Navigation>
</modules>
<global>
<blocks>
<catalog>
<rewrite>
<layer_filter_attribute>MyName_Navigation_Catalog_Block_Layer_Filter_Attribute</layer_filter_attribute>
</rewrite>
</catalog>
</blocks>
<models>
<catalog>
<rewrite>
<layer>MyName_Navigation_Catalog_Model_Layer</layer>
<layer_filter_attribute>MyName_Navigation_Catalog_Model_Layer_Filter_Attribute</layer_filter_attribute>
<layer_filter_item>MyName_Navigation_Catalog_Model_Layer_Filter_Item</layer_filter_item>
</rewrite>
</catalog>
</models>
</global>
</config>
现在你可以打电话了
$_item->getGroupName();
来自您的模板文件:template / catalog / layer / filter.php 或
$ _滤波器 - &GT; getGroupName(); 来自您的模板文件:template / catalog / layer / view.php 并从那里分组/排序属性。
答案 1 :(得分:0)
过滤导航的代码已经在Magento论坛上使用了很长时间,它仍然适用于最新版本:
http://www.magentocommerce.com/boards/viewthread/5500/
这可能会提供您自定义过滤导航外观以满足您需求的所需信息。
您还可以在属性中定义分层导航中的排序顺序。而不是使用'1,2,3'去'100,200,300',以便稍后您可以定义 - 比如 - '宽度'到210等,并将属性插入到您需要的排序顺序。< / p>