How to increase number in "studio/builder_menu.php?page=items"

When I add more than 100 items in "studio/builder_menu.php?page=items", the new items get put on a new page like "page 2". When they are on page 2 or 3 or 4 etc, I can't move them up in the list because the item is on a new page.

So how can I increase the items on each page to maybe 200 or 300 per page?

Can I change this number in the database somewhere?

  • 489
  • More
Replies (2)
    • Hello Genesis !

      Yes, it can be changed via the database. Just execute there the following MySQL query:

      UPDATE `sys_objects_grid` SET `paginate_get_per_page`=300 where `object` = 'sys_studio_nav_items' LIMIT 1;

      • However, I wish you a lot of fun if you have to put something up at the end of a list of 250 items back to the first position. It seems to me that some automatic sorting options should be added, I think for example to data-lists which are often classified in alphabetical order, it would be an appreciable saving of time.

        Login or Join to comment.