SVKpneux Posted July 25, 2015 Share Posted July 25, 2015 Hello Module "other products in same category" displays 6 items - first product of category, second, third, etc. How can I set that products show randomly? Thank you for reply. (PS 1.6.0.9) Link to comment Share on other sites More sharing options...
gabdara Posted July 26, 2015 Share Posted July 26, 2015 In /modules/productscategory/productscategory.php in function hookProductFooter find: // Get infos $category_products = $category->getProducts($this->context->language->id, 1, 100); /* 100 products max. */ To have the categories random add under that line: shuffle($category_products); I don't know if it will work when cache is active though. Link to comment Share on other sites More sharing options...
SVKpneux Posted July 26, 2015 Author Share Posted July 26, 2015 In /modules/productscategory/productscategory.php in function hookProductFooter find: // Get infos $category_products = $category->getProducts($this->context->language->id, 1, 100); /* 100 products max. */ To have the categories random add under that line: shuffle($category_products); I don't know if it will work when cache is active though. Works! You help me a lot. Thank you very much. Link to comment Share on other sites More sharing options...
Recommended Posts