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

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

Category: Profile Enhancements - Version: 3.6.x Rating:
Released: 07-30-2006 Last Update: 05-14-2007 Installs: 222
Uses Plugins Auto-Templates
Translations  
No support by the author.

This modification is no longer available or supported.

This shows members who their last few reputation comments have been given to - in the same manner as their received comments. The list is collapsable and appears in the usercp under the reputation received list. The users current repping power is also displayed, in the same manner as their points total.

The number of comments to display is a setting in the reputation section of vb Options.

If upgrading from the 3.5 version you will need to remove the template edit (or just revert the usercp template).

From version 2.47 onwards users can delete reputation they have given within a certain timeperiod (default = 5 minutes). This allows the removal of comments given in error (or regretted !). This was from a suggestion by Makc666.


History:

v2.40 : First release for vb 3.6, template edit replaced by template injection.
v2.41 : Dependancies updated for 3.6.0 Gold.
v2.42 : Updated for Version Checking.
v2.43 : Dependancies updated, URL's updated (not released).
v2.44 : SQL changed to use slave.
v2.45 : Phrase errors fixed.
v2.46 : Internal Development Version (not released).
v2.47 : Added ability for member to delete reputation given.
v2.48 : Fixed display permission issue (see posts 50 & 51).
v2.49 : Minor template change.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #52  
Old 02-03-2007, 06:37 PM
masterross's Avatar
masterross masterross is offline
 
Join Date: Nov 2005
Location: Bulgaria
Posts: 315
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi,
u were right my reputation show was disabled!
But why reputation given is conected with show reputation?
Reply With Quote
  #53  
Old 02-03-2007, 08:25 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

It shouldn't be really, but that's they way it is for the moment. I'll fix it in a future update.
Reply With Quote
  #54  
Old 02-24-2007, 01:25 PM
Tanabe Tanabe is offline
 
Join Date: Feb 2007
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok I have a problem and wondering if you could help. I installed this hack, Enhanced reputation checks hack, and New posts and rep comments hack. Awsome hacks and Thanks by the way.

I can't seem to get the reputation posted by column in the User CP. This is a new forum so I'm still trying to work things out and not sure if it's just me or it was the hacks. I really don't think its the hack though.

How can I make this option available?
Reply With Quote
  #55  
Old 02-24-2007, 01:29 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

If you mean the person who gave the reputation - it's a usergroup permission.

BTW - please click on the "Mark as Installed" for all the mods you have installed - you are still showing as "Status: Not Installed"
Reply With Quote
  #56  
Old 02-24-2007, 01:38 PM
Tanabe Tanabe is offline
 
Join Date: Feb 2007
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry about that and thank you much. Looking foward to future updates.
Reply With Quote
  #57  
Old 04-28-2007, 10:52 AM
Aimee1969 Aimee1969 is offline
 
Join Date: Apr 2007
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks...I like this mod
Reply With Quote
  #58  
Old 04-28-2007, 01:13 PM
KURTZ KURTZ is offline
 
Join Date: Nov 2006
Location: Italy
Posts: 2,257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

updated!
Reply With Quote
  #59  
Old 05-14-2007, 12:23 PM
Makc666's Avatar
Makc666 Makc666 is offline
 
Join Date: Dec 2002
Location: MSK-RU
Posts: 392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in vBulletin 3.6.6
in template
USERCP
there was change:

3.6.5
Code:
	<tr>
		<td class="thead" colspan="2">&nbsp; &nbsp; $vbphrase[thread]</td>
		<td class="thead">$vbphrase[date]</td>
		<if condition="$vboptions['showuserraters']">
		<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
		</if>
		<td class="thead">$vbphrase[comment]</td>
	</tr>
3.6.6
Code:
	<tr>
		<td class="thead">&nbsp;</td>
		<td class="thead">$vbphrase[thread]</td>
		<td class="thead">$vbphrase[date]</td>
		<if condition="$vboptions['showuserraters']">
		<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
		</if>
		<td class="thead">$vbphrase[comment]</td>
	</tr>

According to this change I propose to change in this modification to make tables headers look the same way:
From:
Code:
	<tr>
		<td class="thead" colspan="2">&nbsp; &nbsp; $vbphrase[thread]</td>
		<td class="thead">$vbphrase[date]</td>
		<td class="thead" nowrap="nowrap">$vbphrase[given_to]</td>
		<td class="thead">$vbphrase[comment]</td>
	</tr>
To:
Code:
	<tr>
		<td class="thead">&nbsp;</td>
		<td class="thead">$vbphrase[thread]</td>
		<td class="thead">$vbphrase[date]</td>
		<td class="thead" nowrap="nowrap">$vbphrase[given_to]</td>
		<td class="thead">$vbphrase[comment]</td>
	</tr>
Reply With Quote
  #60  
Old 05-14-2007, 08:51 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

Seems reasonable, I'll release an update in a bit.
Reply With Quote
  #61  
Old 05-17-2007, 02:51 PM
croportal's Avatar
croportal croportal is offline
 
Join Date: Oct 2005
Posts: 270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice hack, works like a charm
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 06:06 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08046 seconds
  • Memory Usage 2,300KB
  • 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
  • (4)bbcode_code
  • (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
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • 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