View Full Version : Replace certain words by vB code "on the fly"?
Areku
09-27-2002, 12:24 PM
Does this hack exist?
So if for example I type a post and include certain word in plain text, it will be replaced by vbcode?
Say for example:
"Hello this is an example of how Microsoft sux"
and when hitting SEND, Microsoft is replaced by a link to microsoft.com or similar stuff...
Logician
09-28-2002, 11:31 AM
easy way: create a new vbcode with that word and its replacement..
Xenon
09-28-2002, 11:40 AM
sorry pal, but this isn't possible anymore.
this way you mentioned was possible in vb1.x
other methods:
you can create a replacement-code with that word and it's replacement:
advantage: fast way
disadvantage: when someone edits the post the replacement is also parsed and becomes html code in edit box
or you can edit admin/functions.php
find:
function bbcodeparse2($bbcode,$dohtml,$dobbimagecode,$dosmi lies,$dobbcode)
{ // parses text for vB code, smilies and censoring
global $DB_site,$wordwrap,$allowdynimg, $bbuserinfo;
static $smilies,$bbcodes;
global $regexcreated,$searcharray,$replacearray,$phpversi onnum;
if($wordwrap!=0) {
$bbcode=dowordwrap($bbcode);
}
below add:
$bbcode=str_replace("microsoft","http://www.microsoft.com",$bbcode);
carefull: the code is casesensitiv
Areku
10-01-2002, 09:29 AM
Thank you for your answers!
As for the second method, can I add more than just 1 replacement?
Xenon
10-01-2002, 09:35 AM
you can create as much replacements as you like
WotC_Mel
03-30-2004, 07:53 PM
Well, I am coming in late to the party. Is there any reason not to add abut 50 replacement lines? As in, will it cause performance issues?
Also, will this work for phrases?
-Melanie
Xenon
03-30-2004, 09:49 PM
you'd better ask this general vb question at vbulletin.com
as replacements are using php functions to replace texts in strings, of course every replacement will make the parsing slower, but normally you won't notice this, as it's nothing regarding other things ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.