vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vbBux / vbPlaza (https://vborg.vbsupport.ru/forumdisplay.php?f=171)
-   -   Remove Items (https://vborg.vbsupport.ru/showthread.php?t=118504)

melefire 06-13-2006 09:18 PM

Remove Items
 
i disabled 'Username Options' but people still have bolded/colored usernames. How can i remove these from people?

melefire 06-20-2006 09:49 AM

dosn't any one know??

CMX_CMGSCCC 06-20-2006 08:33 PM

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

melefire 06-21-2006 11:31 AM

i searched and could not find a similar query, could you please point me in the right direction

thanx

CMX_CMGSCCC 06-28-2006 01:20 PM

Try this query...

To remove Username Bold:
Code:

UPDATE (TABLE_PREFIX)user SET vbp_displayflags = vbp_displayflags & (-1 ^ 1);
To remove Username Italics:
Code:

UPDATE (TABLE_PREFIX)user SET vbp_displayflags = vbp_displayflags & (-1 ^ 2);
To remove Username Underline:
Code:

UPDATE (TABLE_PREFIX)user SET vbp_displayflags = vbp_displayflags & (-1 ^ 4);
Replace (TABLE_PREFIX) with ur table prefix, or delete if u do not have one.

-CMX

melefire 07-01-2006 06:59 PM

do you know how to remove username fonts?

CMX_CMGSCCC 07-13-2006 07:34 PM

Code:

UPDATE (TABLE_PREFIX)user SET vbp_namefonttype = '';
-CMX


All times are GMT. The time now is 11:12 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01096 seconds
  • Memory Usage 1,716KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete