Für mein kundenspezifisches Modul habe ich Produkt vom Hersteller erhalten. Für Vorlage habe ich kopiert list.phtml
.
In der Vorlagendatei wird eine Paginierung angezeigt, die jedoch alle Produkte anstelle des ausgewählten Limits pro Seite anzeigt. Das Sortieren funktioniert auch nicht.
Wie kann ich es zum Laufen bringen?
Es ist meine Blockdatei:
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;
}