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
  #232  
Old 08-30-2014, 02:18 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

Oh, I guess I didnt read all your message properly.

The previous bug to which you referred was to do with the horizontal postbit, not private messages or the user profile.
The private messages would be a bug (one that no one else has ever mentioned). The user profile is by design.

Due to the way the user profile works, it ignores newlines, and getting round that would require some css tricks which is just not practical for me to spend time on.
Reply With Quote
Благодарность от:
rootsxrocks
  #233  
Old 10-30-2014, 09:54 AM
Buzzle Buzzle is offline
 
Join Date: Apr 2012
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M View Post
I'm not sure what the connection is to this mod ? but nope, I dont know
Any idea where I can remove it?
Reply With Quote
  #234  
Old 03-08-2015, 04:42 AM
Elite_360_'s Avatar
Elite_360_ Elite_360_ is offline
 
Join Date: Nov 2012
Location: New Hampshire
Posts: 518
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hex_legend View Post
Thanks for your time, but no luck for me

On the user's profile and the PMs the "Newline Setting" is still not working, so the pips are starting right after the stars and not on a new/separate line.
Quote:
Originally Posted by Paul M View Post
css tricks which is just not practical for me to spend time on.
I have a fix for Profile and PM's

Step 1. Edit Template custom_erd.css and replace all CSS code.

Code:
img.repimg {
	margin-left: -1px;
	float: none !important; /* Used for Member profile since float left is used on images */
}

img.repimg.erdstar {
	padding-right: 5px;
}

img.repimg.erdpostbit {
	margin-bottom: 5px;
}

img.repimg.erdmember {
	margin-top: 5px;
	float: none !important; /* Float left is used on images */
	vertical-align: text-bottom !important; /* If you have custom images that are not the same size for pips */
}

Step 2. Go To Plugins & Products > Plugin Manager > Extended reputation display > And Edit Hook "parse_templates"

Find this.

Code:
if (in_array(THIS_SCRIPT, array('memberlist','showthread','member')))

Replace with this.

Code:
if (in_array(THIS_SCRIPT, array('memberlist','showthread','member','private')))

Step 3. Still in Plugin Manager (Plugin System) Edit Hook "reputation_image"

Find this.

Code:
$newline = (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'memberlist');

Replace with this.

Code:
$newline = (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'memberlist' OR THIS_SCRIPT == 'member' OR THIS_SCRIPT == 'private');

Now find this.

Code:
			if (THIS_SCRIPT == 'showthread' 
			AND !$vbulletin->options['legacypostbit'])

Replace with this.

Code:
			if (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'private'
			AND !$vbulletin->options['legacypostbit'])
Reply With Quote
3 благодарности(ей) от:
akz645, Hex_legend, Paul M
  #235  
Old 03-25-2015, 04:46 AM
Hex_legend Hex_legend is offline
 
Join Date: May 2007
Posts: 750
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks a lot for the fix Elite_360 but it worked out only for the PMs.

Unfortunately the bug still exists on the profiles and the the "Newline Setting" is still not working, so the pips are starting right after the stars and not on a new/separate line.

Since you have fixed the PMs i am sure it won't be that hard to fix the profiles as well though! I just hope you will find some time to spend on this project, because you are already busy with your own plugins
Reply With Quote
  #236  
Old 06-18-2015, 03:46 PM
Hex_legend Hex_legend is offline
 
Join Date: May 2007
Posts: 750
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hex_legend View Post
Thanks a lot for the fix Elite_360 but it worked out only for the PMs.

Unfortunately the bug still exists on the profiles and the the "Newline Setting" is still not working, so the pips are starting right after the stars and not on a new/separate line.

Since you have fixed the PMs i am sure it won't be that hard to fix the profiles as well though! I just hope you will find some time to spend on this project, because you are already busy with your own plugins
Ignore this message guys!

I just cleared the cache on my browser and the profiles look as they should now.

So Elite_360's fix is working fine
Reply With Quote
  #237  
Old 08-06-2015, 05:47 PM
Mangahaven Mangahaven is offline
 
Join Date: Jun 2015
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm not sure if I uploaded it wrong, or not, but I'm seeing an issue with the images here.(The red & green blocks aren't showing up). They show up in the postbit & user profiles though.

See below screencpas for reference.

https://i.gyazo.com/222bb7b997b1bb1c...6cfabd67e1.png

https://i.gyazo.com/1c292db9e5c4e35c...81a4f9473d.png

vBulletin 4.2.2

Any tips or fixes?
Reply With Quote
  #238  
Old 08-08-2015, 12:53 AM
Mangahaven Mangahaven is offline
 
Join Date: Jun 2015
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can anyone help me?
Reply With Quote
  #239  
Old 08-11-2015, 06:38 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

Does it work ok in a default style ?
Reply With Quote
  #240  
Old 08-12-2015, 07:42 PM
Elite_360_'s Avatar
Elite_360_ Elite_360_ is offline
 
Join Date: Nov 2012
Location: New Hampshire
Posts: 518
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mangahaven View Post
I'm not sure if I uploaded it wrong, or not, but I'm seeing an issue with the images here.(The red & green blocks aren't showing up). They show up in the postbit & user profiles though.

See below screencpas for reference.

https://i.gyazo.com/222bb7b997b1bb1c...6cfabd67e1.png

https://i.gyazo.com/1c292db9e5c4e35c...81a4f9473d.png

vBulletin 4.2.2

Any tips or fixes?
This mod only works where reputation show's and i think reputation only show up in postbit, user profiles, memberlist (if enabled in VB options) and pm's. I don't think the pips show's in reputation given.
Reply With Quote
  #241  
Old 08-14-2015, 02:33 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

They (pips) should show in the usercp (given & received lists) by default, not as part of this mod.
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 03:01 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.04734 seconds
  • Memory Usage 2,325KB
  • Queries Executed 25 (?)
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
  • (7)bbcode_code
  • (5)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
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (12)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)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_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