以下是获取list.phtml中类别页面上的产品列表的代码。
$_productCollection=$this->getLoadedProductCollection();
$_helper = $this->helper('catalog/output');
我想在此列表下方的另一部分,我可以列出任何类别的随机产品。 我可以做些什么来调整这个功能并重复使用它吗?
如果我可以使用同一个助手,那将非常容易。
我想要一个“您可能对这些产品感兴趣”的部分,我会在那里展示随机产品。
由于 抗体
答案 0 :(得分:1)
我无法想象Magento中的某些内容如此简单:
shuffle($_productCollection);
答案 1 :(得分:0)
在XML中你应该定义你的块,如下所示:
<block type="catalog/product_list_random" template="your random template" name="random" />
在类别视图页面中,只需调用您的模板,如
echo $this->getChildHtml('random');