The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#6
|
||||
|
||||
![]()
Actually you could just run a query, quite a few different variations of said query to just remove this "word or phrase". I'm not sure but if I recall correctly Joe's mod prevents it from time of install forward (maybe that would explain why it didn't work like you assumed it would OR I could be assuming wrong here lol).
This would replace the text in your main forum i.e. the one with ID #1: Code:
UPDATE post LEFT JOIN thread ON post.threadid = thread.threadid LEFT JOIN forum ON thread.forumid = forum.forumid SET pagetext = replace( pagetext, 'Sent from my', '' ) WHERE forum.forumid = 1; This query here could remove per threadid: Code:
UPDATE post SET pagetext = replace( pagetext, 'Sent from my', '' ) WHERE post.threadid = '123456'; I suppose though you could do a very broad query such as (untested): Code:
UPDATE post SET pagetext = replace( pagetext, 'Sent from my', '' ); Code:
UPDATE post SET pagetext = replace( pagetext, 'Sent from my iPhone', '' ); |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|