在 magento2 中刷新页面时如何在类别页面上随机播放产品?
How to shuffle products on category page when you refresh the page in magento2?
如何在magento2中刷新页面时在类别页面上随机播放产品?
你好 Mahendra 试试这个解决方案!!
首先在您的自定义主题中覆盖您的 list.phtml 文件。
在您的 list.phtml 文件中添加此代码。
$productArray = iterator_to_array($_productCollection);
洗牌($productArray);
并在 foreach 循环中添加这个 $productArray。
cacheable="false" 在您的 catalog_category_view.xml 文件中。
cacheable="false">
如何在magento2中刷新页面时在类别页面上随机播放产品?
你好 Mahendra 试试这个解决方案!!
首先在您的自定义主题中覆盖您的 list.phtml 文件。 在您的 list.phtml 文件中添加此代码。
$productArray = iterator_to_array($_productCollection); 洗牌($productArray);
并在 foreach 循环中添加这个 $productArray。
cacheable="false" 在您的 catalog_category_view.xml 文件中。