The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How to Remove BB Code from Thread Post
How to remove BB Codes tags From post ? ALL [HIDE] tags it's created.Please any one can post the SQL Code for remove the HIDE Code? I want to Completely remove the Tag HIDE Code, How i can do ?
Seven different BBCode: [HIDE-REPLY] [HIDE-POSTS] [HIDE-THANKS] [HIDE-REPLY-THANKS] [SHOWTOGROUPS] [STG] [HIDE] |
#2
|
||||
|
||||
Run this query after making DB backup.
Use it at your own risk. Code:
UPDATE post SET pagetext = REPLACE(pagetext,'[HIDE-REPLY]',''); UPDATE post SET pagetext = REPLACE(pagetext,'[HIDE-POSTS]',''); UPDATE post SET pagetext = REPLACE(pagetext,'[HIDE-THANKS]',''); UPDATE post SET pagetext = REPLACE(pagetext,'[HIDE-REPLY-THANKS]',''); UPDATE post SET pagetext = REPLACE(pagetext,'[SHOWTOGROUPS]',''); UPDATE post SET pagetext = REPLACE(pagetext,'[STG]',''); UPDATE post SET pagetext = REPLACE(pagetext,'[HIDE]',''); |
Благодарность от: | ||
Nirjonadda |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|