View Single Post
Old 30-09-2007, 18:05   #5 (permalink)
Marsh

 
Marsh's Avatar

Marsh is a helpful contributor with 45 reputation points.Marsh is a helpful contributor with 45 reputation points.

Profile
Male
location: On the rock bus
joined: Aug 2004
posts: 923
bands: None
talents: Air guitar

Default

Quote:
Originally Posted by Woolies View Post
ahh right cool.

What are you using to dissallow rep in those forums if I may ask?

A plugin at the showthread_start hook matching forumids and setting $show['reputationlink'] = false should disable showing the button but still show the rep dots
Code:
$no_rep_forums = array(1,2,3,4);
if (in_array($threadinfo['forumid'], $no_rep_forums))
{
    $show['reputationlink'] = false;
}
Not tested (might need to be placed in a postbit factory hook) & technically you could then still give rep via manually created url typed into the address bar but not showing the button may be a more user-friendly choice if the option isn't there
A popular American three - piece fronted by Pharrell Williams has popped up in my mind.
Marsh is offline   Reply With Quote