enmoderugby Posted August 2, 2022 Share Posted August 2, 2022 Hi, On PS 1,7, we can not show more than 100 orders on the same page (it was 1000 on PS 1,6) This is a big issue for example when we want to export. Is it possible to change this ? brgds, Nicolas Link to comment Share on other sites More sharing options...
ReneSoh Posted March 7, 2024 Share Posted March 7, 2024 Hi Did you get here solution, or someone can advise how to get more than 100 orders showing? PS version 8.1.3 in use. Link to comment Share on other sites More sharing options...
ps8modules Posted March 7, 2024 Share Posted March 7, 2024 (edited) Hi. ./src/PrestaShopBundle/Controller/Admin/CommonController.php OLD: $limitChoices = $request->attributes->get('limit_choices', [10, 20, 50, 100]); NEW: $limitChoices = $request->attributes->get('limit_choices', [10, 20, 50, 100, 300, 500, 1000]); Edited March 7, 2024 by ps8modules.com (see edit history) 1 Link to comment Share on other sites More sharing options...
ReneSoh Posted March 7, 2024 Share Posted March 7, 2024 Thank you! Link to comment Share on other sites More sharing options...
THS Trading Posted July 22, 2024 Share Posted July 22, 2024 On 3/7/2024 at 8:11 PM, ps8modules.com said: Hi. ./src/PrestaShopBundle/Controller/Admin/CommonController.php OLD: $limitChoices = $request->attributes->get('limit_choices', [10, 20, 50, 100]); NEW: $limitChoices = $request->attributes->get('limit_choices', [10, 20, 50, 100, 300, 500, 1000]); Thank for this solution 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