我正在尝试过滤 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')