Deleting unwanted users more 10 at a time

  • Tired of deleting unwanted users 10 at a time? here is how to adjust the number of users to be displayed in http://YOURSITE.COM/admin/user/manage

    modify this file : application/modules/User/controllers/AdminManageController.php

    Look for this line :

    $this->view->paginator = $paginator->setCurrentPageNumber( $page );


    Replace it with

    $this->view->paginator = $paginator->setCurrentPageNumber( $page )->setItemCountPerPage(100);
0 comments