Jump to content

Permanently Increase Product view in backend


mpouliot34

Recommended Posts

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 by mpouliot34 (see edit history)
Link to comment
Share on other sites

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...