magento limiting number of returned items in product collection call

前端 未结 6 881
北荒
北荒 2021-02-04 11:10

Im trying to limit the number of returned results manually in a copy of the list.phtml template, but its turning out to be alot harder than I anticipated.

Ive tried man

6条回答
  •  遇见更好的自我
    2021-02-04 11:43

    A quick way is with this method I recently discovered. You can even use it directly in the template.

    $_productCollection = clone $this->getLoadedProductCollection();
    $_productCollection->clear()
                       ->setPageSize(3)
                       ->load();
    

提交回复
热议问题