Quote:
Originally Posted by Dave
PHP Code:
AND usergroupid IN(1,2,3,4,etc)
Is that what you mean?
|
Yes that was precisely what I was looking for.
Thank you
------------------------------------------------------------------------------------------------------------------------------------------------------
A quick summary/guide for anybody reading:
What I'm about to show you below, allows you to change '
Display Reputation' forcefully for any usergroup(s) or user(s) using
Execute SQL Query.
If they have been given permission to
Hide Reputation from Others, then they can change Hide/Show reputation from the UserCP later. This just hides/shows reputation from the postbit.
Show Reputation for a single usergroup:
On:
Code:
UPDATE user SET options=options + 1024 WHERE NOT(options & 1024) AND usergroupid = X;
Off:
Code:
UPDATE user SET options=options - 1024 WHERE options & 1024 AND usergroupid = X;
Show Reputation for multiple usergroups:
On:
Code:
UPDATE user SET options=options + 1024 WHERE NOT(options & 1024) AND usergroupid IN(X,X,X);
Off:
Code:
UPDATE user SET options=options - 1024 WHERE options & 1024 AND usergroupid IN(X,X,X);
Edit: Even if you don't insert multiple usergroupid/userid, it still works with a single one.
Where
X = UsergroupID (can be seen from
usergroup manger).
If you just want it for multiple users instead of multiple usergroups, then change:
to:
To find userid number, just click on somebody's profile and view the web address. You'll see a ?
X-USERNAME
X= userid number.
------------------------------------------------------------------------------------------------------------------------------------------------------
Note:
This is an issue within vbulletin postbit_legacy coding:
If a usergroup doesn't have permission to show/hide reputation from their UserCP, even if you set it as no (
manually), their reputation will still display (green bars).
If you want to fix this, look at my guide here:
Step A (adds one more condition) which makes it disappear completely (if
Display Reputation is set to No by the admin) even if they don't have permission to edit from the UserCP.
You don't have to check out the rest of the thread. You only need to do Step A.
Note 2:
http://www.vbulletin.com/forum/forum...tions-en-masse
If you want to change other UserCP settings, look at that thread.