मेरे कस्टम मॉड्यूल के लिए मुझे निर्माता द्वारा उत्पाद मिला है। टेम्पलेट के लिए मैंने कॉपी किया है 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;
}