PDA

View Full Version : usergroups?


CrystalP
03-03-2010, 11:10 AM
Ok how do i make a usergroup for the ones who purchased a supscription and how do i change the colors of their user names?

ChopSuey
03-03-2010, 11:24 AM
http://www.vbulletin.com/docs/html/usergroups

:D

CrystalP
03-03-2010, 11:30 AM
is that for 4.0.2?

ChopSuey
03-03-2010, 11:41 AM
Its for vB3 but im sure the Usergroups haven't changed in vB4 ;)

DaleM
03-03-2010, 12:30 PM
Here's how I did mine in 4.0.0 and it's still working in 4.0.2 PL1.

Create the usergroup as usual with Usergroups --> Add New Usergroup giving it an appropriate Title and Description if desired.

I use a User Title to override the default 'ladder' of user titles and a unique icon to identify them. One particular User Title reads:
<b>Founding Member</b><img src="images/ranks/iconname.png"> where 'iconname.png' is a graphic I created and uploaded to the 'images/ranks' folder.

In Username HTML Markup I make the username a unique color by adding <b><font color="#FF0000"> in the opening tag block and </font></b> in the closing tag box. This makes their screen name red in color and bold.

Then simply change the default usergroup for those members you want in this group.

ChopSuey
03-03-2010, 12:45 PM
Remember to update user ranks and titles

AdminCP > Maintenance > Update Counters > usertitles & ranks

;)

DaleM
03-03-2010, 12:52 PM
Remember to update user ranks and titles

AdminCP > Update Counts > usertitles & ranks

;)
In 4.0.x there isn't an Update Counts in the AdminCP - at least not in mine. I have to use User Ranks --> User Rank Manager --> the link for update user titles and ranks --> then the Update User Titles and Ranks button. :up:

ChopSuey
03-03-2010, 12:55 PM
In 4.0.x there isn't an Update Counts in the AdminCP - at least not in mine. I have to use User Ranks --> User Rank Manager --> the link for update user titles and ranks --> then the Update User Titles and Ranks button. :up:

Hi i have fixed it ;)

borbole
03-03-2010, 02:06 PM
Here's how I did mine in 4.0.0 and it's still working in 4.0.2 PL1.


In Username HTML Markup I make the username a unique color by adding <b><font color="#FF0000"> in the opening tag block and </font></b> in the closing tag box. This makes their screen name red in color and bold.



Sorry to but in here but the above code is depricated. Instead of the <b></b> tags should be used <strong></strong> and instead of <font color="#FF0000"></font> it should be used: <span style="color: #FF0000;"></span>

DaleM
03-03-2010, 02:18 PM
I don't know what depricated is but it works in IE and FF and there's a limited number of characters that can be used in some of those fields. :up:

borbole
03-03-2010, 03:05 PM
I don't know what depricated is but it works in IE and FF and there's a limited number of characters that can be used in some of those fields. :up:

Of course that those tags will work but they are old fashion and it would be ebst to avoid using them. As they are generally considered to be “bad code”. If you use a STRICT DOCTYPE, deprecated elements will not pass validation for ex.

Whereas about the definition of Depricated tags:

A deprecated element or attribute is one that has been outdated by newer constructs. Deprecated elements are defined in the reference manual in appropriate locations, but are clearly marked as deprecated. Deprecated elements may become obsolete in future versions of HTML.