Quote:
Originally Posted by kh99
I haven't tried it so I don't know if it will work, but you could try making a plugin with code like:
PHP Code:
if (some check for forumid)
$vbulletin->options['reputationenable'] = 0;
The problem is figuring out where to do that. I'm not sure you can do it in a "global" hook (one that gets run on every page) because I think sometimes you don't know what forum you're dealing with until you get in to the specific script.
You could probably start out with a plugin using showthread_getinfo and something like:
PHP Code:
if (in_array($thread['forumid'], array(1, 2, 3))
$vbulletin->options['reputationenable'] = 0;
(or else try what HMBeaty suggests in the next post).
|
I used,
Code:
if (in_array($thread['forumid'], array(80, 102))
$vbulletin->options['reputationenable'] = 0;
Result:
Code:
Parse error: syntax error, unexpected T_VARIABLE in /home/user/public_html/forums/showthread.php(377) : eval()'d code on line 2
Quote:
Originally Posted by HMBeaty
Or you could just wrap the reputation images in a conditional in the postbit so that you can only see it on certain forums
|
How would I go about putting it for a specific forumid.
The forum Ids would be 80, 102