Đối với mô-đun tùy chỉnh của tôi, tôi đã nhận được sản phẩm của nhà sản xuất. Đối với mẫu tôi đã sao chép list.phtml
.
Trên trang mẫu tệp xuất hiện nhưng nó hiển thị tất cả sản phẩm thay vì giới hạn được chọn trên mỗi trang. Sắp xếp không hoạt động quá.
Làm thế nào tôi có thể làm cho nó hoạt động ??
Đây là tập tin khối của tôi:
protected function _getProductCollection()
{
if (is_null($this->_productCollection)) {
$layer = $this->getLayer();
$brand_id = $this->getRequest()->getParam('id');
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addAttributeToSelect('*');
$collection->addFieldToFilter(array(
array('attribute' => 'manufacturer', 'eq' => $brand_id)
));
}
return $collection;
}