PDA

View Full Version : Hide Give Reputation


redfinite
04-16-2014, 06:09 AM
Hi everyone,

I was hoping someone could help point me in the right direction.

Is there a way to hide the give reputation button so it only shows on the first post of a thread. I want people to only be able to give reputation to those who start a thread. I would also like to limit this to certain forum's.

Thanks

cellarius
04-16-2014, 07:57 AM
Edit your postbit or postbit_legacy-Template.

Find:
<vb:if condition="$show['reputationlink']">

Change to:
<vb:if condition="$show['reputationlink'] AND $post['postcount']=='1' AND in_array($thread['forumid'], array(X, Y, Z))">

Where X,Y,Z is a comma seperated list of the forums you want reputation to be used.

redfinite
04-16-2014, 10:12 AM
Your a champion Cellarius! Ill give this a go and get back to you on how it went.

redfinite
04-18-2014, 05:15 AM
Works like a charm Cellarius thank you. Tested and working.