Quote:
07-25-03 at 06:11 PM wwwabbit said this in Post #388
I am in the same boat as dmark101......
It's all installed, but I don't know how to make it do what I want.... I want so "registered" users get nothing to do with Avatar's, but everyone else (the other 5 member groups we have) can have an avatar, and upload there own, etc. I am lost as how to set it up so it can do that.
Thanks!
~Brian
|
Hmm. only a quick workaround:
search in member.php for:
Code:
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts) {
and replace with
Code:
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts and
$bbuserinfo[usergroupid]==6) {
6 for the user groupid (User group) which can play with avatars (upload).
For more than one group this code:
Code:
if (($avatarallowupload or $avatarallowwebsite) and $bbuserinfo[posts] >= $avatarcustomposts and
($bbuserinfo[usergroupid]==4 || $bbuserinfo[usergroupid]==5 ||
$bbuserinfo[usergroupid]==6 ...)) {