我做了一个脚本女巫展示产品。
但是所有产品都在一页上,没有页码工具栏
如何激活产品集合的页码。
我通过以下方式接收收藏:
$attribute = Mage::getResourceModel('catalog/product')->getAttribute('manufacturer');
$attribute->setStoreId(Mage_Core_Model_App::ADMIN_STORE_ID);
$source = $attribute->getSource();
$id = $source->getOptionId($brand);
//$products = Mage::getModel('catalog/product')->getCollection();
$products = Mage::getResourceModel('catalog/product_collection')->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes());
$products->addAttributeToFilter('manufacturer', array('eq' => $id));
接下来我使用从 catalog/list.phtml 复制的 foreach 来显示所有产品
如何激活页码工具栏