การแบ่งหน้าและการเรียงลำดับไม่ทำงาน
สำหรับโมดูลที่กำหนดเองของฉันฉันได้รับผลิตภัณฑ์จากผู้ผลิต สำหรับเทมเพลตฉันได้คัดลอกlist.phtmlแล้ว ในการแบ่งหน้าไฟล์เทมเพลตจะปรากฏขึ้น แต่จะแสดงผลิตภัณฑ์ทั้งหมดแทนที่จะเป็นขีด จำกัด ที่เลือกต่อหน้า การเรียงลำดับไม่ทำงานเช่นกัน ฉันจะทำให้มันทำงานได้อย่างไร? มันเป็นไฟล์บล็อกของฉัน: 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; }