As far as I know it is not possible to hide the mass update. Not on user level and not as admin.
There is an admin setting "Listview items per page" (Admin > System Settings) where you can define the number of items per page for all modules and all users.
If you want to change the number of items only for the contacts module (but for all users) you may change the file modules/Contacts/ListView.php.
Change:
Code:
echo $qsd->GetQSScripts();
$lv->setup($seedContact, 'include/ListView/ListViewGeneric.tpl', $where, $params);
To:
Code:
echo $qsd->GetQSScripts();
$entriesPerPage = 80;
$lv->setup($seedContact, 'include/ListView/ListViewGeneric.tpl', $where, $params, 0, $entriesPerPage);
Bookmarks