The Arcive of vBulletin Modifications Site. |
|
Remove Items Details »»
|
|||||||||||||||||||||||||
i disabled 'Username Options' but people still have bolded/colored usernames. How can i remove these from people?
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
dosn't any one know??
|
|
#3
|
|||
|
|||
|
Right now, u'll have to do a query to remove them. Or use the vbPlaza Maintenance options to "Clear All Display Flags".
At this moment, I dont have time to build the query for you, but there are other examples in this forum about removing the flags for display flags via a query. -CMX |
|
#4
|
||||
|
||||
|
i searched and could not find a similar query, could you please point me in the right direction
thanx |
|
#5
|
|||
|
|||
|
Try this query...
To remove Username Bold: Code:
UPDATE (TABLE_PREFIX)user SET vbp_displayflags = vbp_displayflags & (-1 ^ 1); Code:
UPDATE (TABLE_PREFIX)user SET vbp_displayflags = vbp_displayflags & (-1 ^ 2); Code:
UPDATE (TABLE_PREFIX)user SET vbp_displayflags = vbp_displayflags & (-1 ^ 4); -CMX |
|
#6
|
||||
|
||||
|
do you know how to remove username fonts?
|
|
#7
|
|||
|
|||
|
Code:
UPDATE (TABLE_PREFIX)user SET vbp_namefonttype = ''; |
![]() |
|
|