Allow users to see all their reputation in UserCP
This modification is in the archives.
This is a remarkably simple hack that takes minutes to install and allows users the option of seeing more than the default 5 repuation entries in their User CP.
First, edit the USERCP template. Find: Code:
$vbphrase[latest_reputation_received] Code:
<!-- User Rep Options --> <form name="rep" action="usercp.php" method="post"> <select name="repcount" onchange="this.form.submit()" style="font-size:x-small"> <option>Show how many comments...</option> <option value="5">5</option> <option value="10">10</option> <option value="15">15</option> <option value="20">20</option> <option value="25">25</option> <option value="30">30</option> <option value="40">40</option> </select> </form> Open usercp.php Find: Code:
// ############################### start reputation ############################### Code:
$repcount=$_POST['repcount']; if ($repcount=="") { $repcount=5; } Code:
ORDER BY reputation.dateline DESC Code:
LIMIT 0, $repcount Download No files for download. |
Similar Mods
Major Additions Reputation Points in USERCP | vBulletin 3.6 Template Modifications |
Display Reputation Given in UserCP | Modification Graveyard |