Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Extended Reputation Display Details »»
Extended Reputation Display
Version: 4.2.2.0, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

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.
9 благодарности(ей) от:
ELROBLE, Erica1977, final kaoss, ggrimes620, Life Revived, RichieBoy67, rootsxrocks, VTXCafe.com

Comments
  #92  
Old 04-21-2011, 08:41 PM
Meeper Meeper is offline
 
Join Date: Oct 2009
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

And how would one go about doing this?
Reply With Quote
  #93  
Old 04-21-2011, 08:45 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Edit the product xml file, replacing this

PHP Code:
$post['reputationdisplay'] = ($vbulletin->options['legacypostbit'] ? '<br/>' '' ); 

with this

PHP Code:
$post['reputationdisplay'] = ' '

and then re-import it.
Reply With Quote
  #94  
Old 04-21-2011, 10:21 PM
Meeper Meeper is offline
 
Join Date: Oct 2009
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks a million Paul! That worked like a charm!
Reply With Quote
  #95  
Old 05-01-2011, 09:54 PM
DeLorean_ITA DeLorean_ITA is offline
 
Join Date: Mar 2011
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default



No image in user panel! Solution?
Reply With Quote
  #96  
Old 05-18-2011, 12:07 PM
DirtRider DirtRider is offline
 
Join Date: Feb 2011
Location: South Africa
Posts: 168
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sticky View Post
Could this be edited to display the reputation level comments? Why this was disabled doesn't really make sense, we are missing out on a fun part of the rep system.

Yes I would like to see this as well, I installed it and then uninstalled it because my members did not like the fact that the little story lines had disappeared
Reply With Quote
  #97  
Old 05-18-2011, 12:44 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

At some point they will get added back, but its low on my priority list.
Reply With Quote
  #98  
Old 05-31-2011, 12:51 PM
fevredsuk fevredsuk is offline
 
Join Date: Apr 2010
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by k_v View Post
template "postbit_reputation_erd"
old:
HTML Code:
<img class="repimg" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw posneg}.png" alt="{vb:phrase reputation}" />
new
HTML Code:
<img class="repimg" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw posneg}.png" alt="{vb:raw post.username} {vb:raw post.level}" />
module in "reputation_image":
after
PHP Code:
$templater vB_Template::create('postbit_reputation_erd'); 
add
PHP Code:
$templater->register('post'$post); 
Thanks for this, but for this but there is a mistake

its actually .gif not png

HTML Code:
<img class="repimg" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw posneg}.gif" alt="{vb:raw post.username} {vb:raw post.level}" />
Reply With Quote
Благодарность от:
emperatour
  #99  
Old 06-11-2011, 11:03 AM
yin9 yin9 is offline
 
Join Date: Dec 2010
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Paul M, great mod, 5 stars and marked as install.
Reply With Quote
  #100  
Old 06-11-2011, 03:03 PM
duyhoadp duyhoadp is offline
 
Join Date: Aug 2009
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not work for VB 4.1.3
Reply With Quote
  #101  
Old 06-11-2011, 05:06 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes it does.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:11 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05028 seconds
  • Memory Usage 2,332KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_html
  • (4)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (9)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete