mpouliot34 Posted July 6, 2017 Share Posted July 6, 2017 (edited) I am wondering if there is a way to force Prestashop to use the item count I set to view? I know that I can go and change it to show 50 100 and other options but it seems that whenever I log back in it defaults back to only show 50 on the page until I change it again. I know that this is not a big deal but Having to repeat this task a few times a day is getting a bit annowing so I am looking to see if there is a place I can set it and it will stick. I am running 1.6.1.7 Thanks Edited July 6, 2017 by mpouliot34 (see edit history) Link to comment Share on other sites More sharing options...
Scully Posted July 6, 2017 Share Posted July 6, 2017 Puah, that was difficult to find. Look at /classes/controller/AdminController.php around line 200. There you'll find it: /** @var array Number of results in list per page (used in select field) */ protected $_pagination = array(20, 50, 100, 300, 1000); /** @var int Default number of results in list per page */ protected $_default_pagination = 50; I think, Presta uses defaults for all kind of lists. So the last line above will most likely control more than just products. Report back if it works. 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