1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Change the number of listings on the manage users page (/users.php)

Discussion in 'Templates, HTML, CSS, and Design Help' started by tournamentboats, Apr 5, 2016.

  1. tournamentboats New Member

    Guys,

    I'm sure it is staring me in the face, but where do I increase the number of users listed on "administration/users.php" from 15 up to something a little more usable (50)?

    Cheers
    TB
  2. Mike-N-Tosh Owner

    There no setting for that within the administration as it is hard coded.

    As an alternative you could modify the administration/users.php file directly to include the $csv variable for the 'getAllUsers' function. This will return ALL users without any pagination however.

    Around line 242 change this:
    PHP:
    $list $Users->getAllUsers($options$pageNum);
    To:
    PHP:
    $list $Users->getAllUsers($options$pageNumtrue);
  3. tournamentboats New Member

    Thanks Mike.
    With only ~1000 users I will see how that affects my page load time.

    Cheers
    TB

Share This Page