2

我正在尝试过滤 list.phtml 以满足我的需要,它只显示基于属性值的产品。加载产品集合的原始代码是:

$_productCollection=$this->getLoadedProductCollection();
$_helper = $this->helper('catalog/output');

要进行过滤,我得到了代码:

$_productCollection=$this->getLoadedProductCollection();

$cat_id = Mage::getModel('catalog/layer')->getCurrentCategory()->getId();
$_productCollection = Mage::getResourceModel('catalog/product_collection')
   ->addAttributeToFilter('language', array('eq' => array('English')))
   ->addAttributeToSelect('*')
   ->addCategoryFilter(Mage::getModel('catalog/category')->load($cat_id));


$_helper = $this->helper('catalog/output');

这可行,但是分页和项目总数(从toolbar.phtml和pager.phtml生成的不正确。例如,原始产品集合的正确分页为7页,每页10个产品。

但是,当我使用上面显示的过滤器时,分页显示相同的 7 页,并且每一页过滤的书都在一页上(有 18 本书英文,所以 18 本书中有 7 页是重复的)。

请有人帮我解决这个分页问题。

谢谢。

集合的 SQL 如下:

 SELECT `e`.*, `at_language`.`value` AS `language`, `cat_index`.`position`
 AS `cat_index_position` FROM `catalog_product_entity`
 AS `e` INNER JOIN `catalog_product_entity_varchar`
 AS `at_language` ON (`at_language`.`entity_id` = `e`.`entity_id`) 
 AND (`at_language`.`attribute_id` = '1002') 
 AND (`at_language`.`store_id` = 0) INNER JOIN `catalog_category_product_index`
 AS `cat_index` ON cat_index.product_id=e.entity_id AND cat_index.store_id=1 
 AND cat_index.visibility IN(2, 4) AND cat_index.category_id='38' 
 AND cat_index.is_parent=1 WHERE (at_language.value = 'English')
4

2 回答 2

5

在您的 list.phtml 文件中使用它:

$_productCollection->clear()
    ->addAttributeToFilter('attribute_set_id', array('eq' => 63))
    ->load();
于 2013-04-19T06:48:15.077 回答
4

我的猜测是您弄错了产品计数,因为缺少产品可见性过滤器。尝试像这样添加它:

$_productCollection = Mage::getResourceModel('catalog/product_collection')
   ->addAttributeToFilter('language', array('eq' => array('English')))
   ->addAttributeToSelect('*')
   ->addCategoryFilter(Mage::getModel('catalog/category')->load($cat_id))
   ->setVisibility(
       Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds()
   );

添加:

您设置的自定义集合list.phtml与系统在分页器中使用的集合不同。分页器块Mage_Catalog_Block_Product_List_Toolbar将从$this->_getProductCollection()请参阅此处)获取原始产品集合,该集合没有您的过滤器。

恐怕,对模板文件中的集合进行更改是不够的。您可能必须覆盖该Mage_Catalog_Block_Product_List块,特别是其功能_getProductCollection()以实现必要的过滤。

加法2

建议的功能覆盖Mage_Catalog_Block_Product_List::_getProductCollection

protected function _getProductCollection()
{ 
    $collection = parent::_getProductCollection();
    $collection->addAttributeToFilter('language', array('eq' => array('English')));
    $this->_productCollection = $collection;

    return $this->_productCollection;
}
于 2013-01-29T10:54:53.640 回答