[ABD] Reputation System

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
Don Vito
Registered User
Posts: 89
Joined: Mon Jul 04, 2011 1:18 am

Re: [RC] Reputation System

Post by Don Vito »

Pico88 wrote:You have to adjust css and template to you style on your own. I'm to busy to do that.

BTW to icons, you can use icons from images/reputation, but it needs template changes.
Understandable..

I have been trying that every day now, but unfortunately my knowledge of coding is limited.

It looks like kmakoto and i are using the same template so if there is someone else that can help us it would be very much appreciated.

@kmakoto, have a look here to get the tumbs working in your style.
User avatar
kmakoto
Registered User
Posts: 234
Joined: Mon Mar 01, 2010 11:35 pm

Re: [RC] Reputation System

Post by kmakoto »

Solved

My forum: Test account

Account: Prueba
Pass: 1234567

Topic Demo http://prueba.iloveidol.com/viewtopic.php?f=9&t=55
Don Vito
Registered User
Posts: 89
Joined: Mon Jul 04, 2011 1:18 am

Re: [RC] Reputation System

Post by Don Vito »

kmakoto wrote:Solved

My forum: Test account

Account: Prueba
Pass: 1234567

Topic Demo http://prueba.iloveidol.com/viewtopic.php?f=9&t=55
Nice :P i tested it, can you tell me how you did this???
User avatar
kmakoto
Registered User
Posts: 234
Joined: Mon Mar 01, 2010 11:35 pm

Re: [RC] Reputation System

Post by kmakoto »

in viewtopic_body.html

reemplaze code for

Code: Select all

<!-- IF S_REPUTATION -->
		<div class="right">
			<ul class="profile-icons">
				<!-- IF postrow.S_GIVE_REPUTATION -->
				<li class="rate-good-icon">
				<a href="{postrow.U_ADD_POS}" title="{L_RS_ADD_POINTS} {L_RS_TO} {postrow.POST_AUTHOR}"><span>{L_RS_ADD_POINTS}</span>
				</a>
				</li>
				<!-- IF postrow.S_GIVE_NEGATIVE-->
				<li class="rate-bad-icon">
				<a href="{postrow.U_ADD_NEG}" title="{L_RS_SUBTRACT_POINTS} {L_RS_TO} {postrow.POST_AUTHOR}"><span>{L_RS_SUBTRACT_POINTS}</span>
				</a>
				</li>
				<!-- ENDIF -->
				<!-- ENDIF -->
			</ul>
			<div class="reputation {postrow.REPUTATION_BOX}" title="{L_REPUTATION}"><!-- IF postrow.U_VIEW_REP --><a href="{postrow.U_VIEW_REP}" onclick="popup(this.href, 780, 550); return false;"><!-- ENDIF -->{postrow.POST_REP}<!-- IF postrow.U_VIEW_REP --></a><!-- ENDIF --></div>
		</div>
			<!-- ENDIF -->
reemplace all reputation.css for

Code: Select all

.phpbb .reputation.positive a,.phpbb  .reputation.negative a {
	color: white;
	text-decoration: none;
	cursor: pointer;
}
.phpbb .reputation.positive {
	background: #6F8F52;
	color: white;
}

.phpbb .reputation.negative {
	background: #B82929;
	color: white;
}

.phpbb .reputation.zero {
	background: #FFF;
	color: #6E6E6E;
}

.phpbb .reputation.span {
	color: #FFF;
}

.phpbb .reputation {
	font-weight: bold;
	padding: 3px 8px;
	display: inline-block;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #e8e8e8;
	font-size: 10px;
	background-image: none;
	/*height: 14px;*/
	/*padding: 2px 10px !important;*/
}

.phpbb .positive {
	color: #6F8F52;
}

.phpbb .negative {
	color: #B82929;
}

.phpbb .profile-icons .rate-good-icon a {
	width: {IMG_ICON_RATE_GOOD_WIDTH}px;
}
.phpbb .profile-icons .rate-good-icon a {
	background-image: url("{IMG_ICON_RATE_GOOD_SRC}");
}
.phpbb .profile-icons .rate-bad-icon a {
	width: {IMG_ICON_RATE_BAD_WIDTH}px;
}
.phpbb .profile-icons .rate-bad-icon a {
	background-image: url("{IMG_ICON_RATE_BAD_SRC}");
}
Don Vito
Registered User
Posts: 89
Joined: Mon Jul 04, 2011 1:18 am

Re: [RC] Reputation System

Post by Don Vito »

Making changes now :)
Don Vito
Registered User
Posts: 89
Joined: Mon Jul 04, 2011 1:18 am

Re: [RC] Reputation System

Post by Don Vito »

kmakoto wrote:in viewtopic_body.html

reemplaze code for

Code: Select all

<!-- IF S_REPUTATION -->
		<div class="right">
			<ul class="profile-icons">
				<!-- IF postrow.S_GIVE_REPUTATION -->
				<li class="rate-good-icon">
				<a href="{postrow.U_ADD_POS}" title="{L_RS_ADD_POINTS} {L_RS_TO} {postrow.POST_AUTHOR}"><span>{L_RS_ADD_POINTS}</span>
				</a>
				</li>
				<!-- IF postrow.S_GIVE_NEGATIVE-->
				<li class="rate-bad-icon">
				<a href="{postrow.U_ADD_NEG}" title="{L_RS_SUBTRACT_POINTS} {L_RS_TO} {postrow.POST_AUTHOR}"><span>{L_RS_SUBTRACT_POINTS}</span>
				</a>
				</li>
				<!-- ENDIF -->
				<!-- ENDIF -->
			</ul>
			<div class="reputation {postrow.REPUTATION_BOX}" title="{L_REPUTATION}"><!-- IF postrow.U_VIEW_REP --><a href="{postrow.U_VIEW_REP}" onclick="popup(this.href, 780, 550); return false;"><!-- ENDIF -->{postrow.POST_REP}<!-- IF postrow.U_VIEW_REP --></a><!-- ENDIF --></div>
		</div>
			<!-- ENDIF -->
reemplace all reputation.css for

Code: Select all

.phpbb .reputation.positive a,.phpbb  .reputation.negative a {
	color: white;
	text-decoration: none;
	cursor: pointer;
}
.phpbb .reputation.positive {
	background: #6F8F52;
	color: white;
}

.phpbb .reputation.negative {
	background: #B82929;
	color: white;
}

.phpbb .reputation.zero {
	background: #FFF;
	color: #6E6E6E;
}

.phpbb .reputation.span {
	color: #FFF;
}

.phpbb .reputation {
	font-weight: bold;
	padding: 3px 8px;
	display: inline-block;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #e8e8e8;
	font-size: 10px;
	background-image: none;
	/*height: 14px;*/
	/*padding: 2px 10px !important;*/
}

.phpbb .positive {
	color: #6F8F52;
}

.phpbb .negative {
	color: #B82929;
}

.phpbb .profile-icons .rate-good-icon a {
	width: {IMG_ICON_RATE_GOOD_WIDTH}px;
}
.phpbb .profile-icons .rate-good-icon a {
	background-image: url("{IMG_ICON_RATE_GOOD_SRC}");
}
.phpbb .profile-icons .rate-bad-icon a {
	width: {IMG_ICON_RATE_BAD_WIDTH}px;
}
.phpbb .profile-icons .rate-bad-icon a {
	background-image: url("{IMG_ICON_RATE_BAD_SRC}");
}
Can confirm that this works, thanks kmakoto :D
User avatar
kmakoto
Registered User
Posts: 234
Joined: Mon Mar 01, 2010 11:35 pm

Re: [RC] Reputation System

Post by kmakoto »

I use this code in my forum
|Zotac®|
Registered User
Posts: 46
Joined: Thu Jan 06, 2011 10:57 pm

Re: [RC] Reputation System

Post by |Zotac®| »

hey,

I don't know if this feature is already exists but I have an idea:
The user can choice if he want reputations or not. Selectable in UCP
User avatar
Pico88
Registered User
Posts: 878
Joined: Sat Mar 07, 2009 10:24 pm
Location: Poland
Name: Lukasz

Re: [RC] Reputation System

Post by Pico88 »

|Zotac®| wrote:hey,

I don't know if this feature is already exists but I have an idea:
The user can choice if he want reputations or not. Selectable in UCP
There is no such function.
I don't see any sense in that.
Please do not PM me for support.
Don Vito
Registered User
Posts: 89
Joined: Mon Jul 04, 2011 1:18 am

Re: [RC] Reputation System

Post by Don Vito »

Hey,

I have launched your module on a online test forum that some of my members use to test future modules. The feedback has been very positive in general!

There are two things we feel could make a great addition to a already very great mod.
1. Admins can give points to the members
I run a gaming forum and Admins used to give extra rep points for reaching curtain online goals such as winning an event.
2. Admins can turn on or off force comments option for either user reputation or post reputation.
I think the comment options for rating a member is great, but for giving a rep points for a post not so much.
I would like to keep the force comment for rating a member in their profile, and make it possible to rate posts without leaving a comment. This way there is a clear difference for my members in the use of this module although this module uses one and the same system.

Looking forward to your reply :)
User avatar
Pico88
Registered User
Posts: 878
Joined: Sat Mar 07, 2009 10:24 pm
Location: Poland
Name: Lukasz

Re: [RC] Reputation System

Post by Pico88 »

Hi,
good ideas. In a next release I will include these options.

BTW, the force comment setting could have such options: yes, no, only post rating, only user rating. ;)
Please do not PM me for support.
User avatar
victory1
Registered User
Posts: 935
Joined: Sun Oct 10, 2010 6:47 pm

Re: [RC] Reputation System

Post by victory1 »

Pico88 wrote:Hi,
good ideas. In a next release I will include these options.

BTW, the force comment setting could have such options: yes, no, only post rating, only user rating. ;)
Please remember to also include the notification option too. Thanks
User avatar
Pico88
Registered User
Posts: 878
Joined: Sat Mar 07, 2009 10:24 pm
Location: Poland
Name: Lukasz

Re: [RC] Reputation System

Post by Pico88 »

victory1 wrote:Please remember to also include the notification option too. Thanks
I resigned from it because user can chek to notify about the point (by PM). Maybe in the future, but not in a next release.
Please do not PM me for support.
User avatar
victory1
Registered User
Posts: 935
Joined: Sun Oct 10, 2010 6:47 pm

Re: [RC] Reputation System

Post by victory1 »

Pico88 wrote:
victory1 wrote:Please remember to also include the notification option too. Thanks
I resigned from it because user can chek to notify about the point (by PM). Maybe in the future, but not in a next release.
OK. So is there a way to make yes for the PM notification the default. The user can always go back and change it to no. :D
User avatar
Pico88
Registered User
Posts: 878
Joined: Sat Mar 07, 2009 10:24 pm
Location: Poland
Name: Lukasz

Re: [RC] Reputation System

Post by Pico88 »

In reputation_ratepost.html and reputation_rateuser.html find

Code: Select all

		<!-- IF REP_PM_NOTIFY -->
		<dl>
			<dt>&nbsp;</dt>
			<dd><label><input type="checkbox" name="notify_user" /> {L_NOTIFY_USER_REP}</label></dd>
		</dl>
		<!-- ENDIF -->
replace with

Code: Select all

		<!-- IF REP_PM_NOTIFY -->
		<dl>
			<dt>&nbsp;</dt>
			<dd><label><input type="checkbox" name="notify_user" checked="checked" /> {L_NOTIFY_USER_REP}</label></dd>
		</dl>
		<!-- ENDIF -->
Please do not PM me for support.

Return to “[3.0.x] Abandoned MODs”