AcidLava Posted March 22 Share Posted March 22 Hello, I am looking for a solution to display the product lists from categories in a random order each time the page is refreshed. Do you know of any code or module that would allow this? Thank you! Link to comment Share on other sites More sharing options...
Webkul Solutions Posted May 1 Share Posted May 1 To achieve this, you can add a shuffle function before returning the product list.src/Core/Product/Search/ProductSearchResult.php in the getProducts function. shuffle($this->products); 1 Link to comment Share on other sites More sharing options...
sparkest Posted May 1 Share Posted May 1 Just wondering, if we modify the getProducts function directly in ProductSearchResult.php, wouldn’t that get overwritten during a PrestaShop update? Link to comment Share on other sites More sharing options...
Webkul Solutions Posted May 1 Share Posted May 1 This modification will be removed after a PrestaShop update. You will need to reapply it after each update. Link to comment Share on other sites More sharing options...
Mediacom87 Posted May 3 Share Posted May 3 Hi, This modification is a very bad idea in terms of performance, and it's preferable to maintain consistency or to develop a system that refreshes the order of products according to a precise delay. Link to comment Share on other sites More sharing options...
AcidLava Posted May 12 Author Share Posted May 12 Hello, Wondering if to randomize the product lists every day or maybe more could be a great thing for SEO as it "refresh" the pages content? Best regards. Link to comment Share on other sites More sharing options...
Webkul Solutions Posted May 12 Share Posted May 12 For daywise product randomization You can manage this using the approach below. Uses today’s date to seed the random number generator. Sorts products randomly using that seed. Returns the same shuffled list for the same day. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now