Questions tagged «pagination»


1
Magento 2-具有分层导航和分页的所有产品页面
我想创建一个与所有的产品页面filters,toolbar,pagination。 我可以通过使用名称创建一个新类别All Products并为其分配所有产品来做到这一点。但是我想这不是一个好方法,好像每次将新产品添加到网站时,也应该将其添加到“所有产品”类别中。人为错误的可能性很大。 有没有一种方法可以用根目录类别调用类别页面?喜欢来自ID: 2 如果有人不想为我编写代码是可以的,但是如果有人可以帮助我找到一种做到这一点的方法,那就太好了。

5
分页和排序不起作用
对于我的自定义模块,我已按制造商提供产品。对于模板,我已复制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; }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.