Quote:
Originally Posted by iguanairs
Hello,
Is there a way that we could have this shows a "more" button like the smilies do? For sites that have a large contribution list,this will look very odd as it lengthens with names. A cut off point of like 5-10 names would be great and then a "more" button/link to display all of them.
|
Yes
Edit contrib.php
Find:
Code:
// query to get the users who are contributors
$getusers = $DB_site->query("
SELECT userid,username
FROM user
WHERE contrib = '1'
");
replace: ( "LIMIT 10" was added. * change to a desired value*)
Code:
// query to get the users who are contributors
$getusers = $DB_site->query("
SELECT userid,username
FROM user
WHERE contrib = '1' LIMIT 10
");
Edit:
adv_portal_contrib
Find:
$contrib_bit
After add:
Code:
<br>[<a href="../forums/contributors.php">more</a>]<br>
That should do it.