Version: 4.2.2.0, by Paul M
Developer Last Online: Nov 2023
Category: Show Thread Enhancements -
Version: 4.2.x
Rating:
Released: 01-01-2010
Last Update: 08-28-2014
Installs: 460
Uses Plugins Auto-Templates
Additional Files Translations
No support by the author.
As of 23 Nov 2017 this modification has been withdrawn.
This hack extends the existing reputation display system from just the light/dark green pips to green and golden pips, and then a series of bronze, silver and gold stars as the pips limit is reached.
The dark green pips are followed by light green pips, which are then followed by gold pips.
When the limit these can display is reached, the (prefix) display of stars begins - starting with the bronze stars, then the silver stars and finally the gold Stars. If your reputation is zero then the neutral grey pip is displayed. Negative reputations are displayed in a similar manner using light and dark red pips and red stars - however, there is only one star level for negative reputation.
Each time you 'lap' the limit of the pips display, another star is added. The number of each star is limited by an ACP option (by default, 5 bronze = 1 silver, and 5 silver = 1 gold). The number and value of the pips in each group of pips is defined by six settings.
A line break can be inserted after the stars. The extended display system can be enabled/disabled in the options.
All options are in ACP > Options > Extended Reputation
To install just download and unzip the files and follow the instructions in the text file.
History:
v4.0.1 : 02-Jan-2010 : Initial release for vb 4.0.0 Gold.
v4.1.0 : 04-Dec-2010 : Updated for vBulletin 4.1.
v4.1.7.0 : 16-Oct-2011 : Updated for vBulletin 4.1.7. v4.1.8.0 : 18-Nov-2011 : Updated for vBulletin 4.1.8 onwards (only). v4.1.8.1 : 28-Nov-2011 : Extend line-break back to non legacy postbit.
v4.2.0.0 : 24-May-2012 : Updated for vBulletin 4.2.0. v4.2.2.0 : 29-Aug-2014 : Fixed line-break issue as per 4.1.8.1).
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
After installing this I noticed when you place your mouse over the repo green dots it doesn't say the little sayings any more ", it just shows as "reputation"
Here's the changes you need to make to get them back.
Quote:
Originally Posted by Paul M
Quote:
Originally Posted by sung
I altered the plugins and templates slightly to allow for displaying the alternate text, would you like the changes to incorporate into the mod?
If not can I post my changes in the thread for the mod so that others can use them if they want?
So that we're not sending PMs back and forth here are the changes:
Changed postbit_reputation_erd to match the default postbit_reputation (I'm not sure if this negates the need for the custom template or not?), namely the alt tag.
OLD:
Code:
alt="{vb:phrase reputation}"
NEW:
Code:
alt="{vb:raw post.username} {vb:raw post.level}"
Changed the following plugin: Extended Reputation Display (3) reputation_image
OLD:
PHP Code:
if ($vbulletin->options['erdenable'])
{
if ($posneg <> 'off')
{
$repval = $post['reputation'];
$post['reputationdisplay'] = ($vbulletin->options['legacypostbit'] ? '<br/>' : '' );
if (!$post['reputationlevelid'])
{
$post['level'] = $vbulletin->options['reputationundefined'];
}