Log in

View Full Version : Removing SMiles in a vB Style?


jcroft
02-27-2002, 01:07 PM
Is it possible to have one vB style that will not display graphical smiles? I'm creating an "at work" style for my users that should be as plain as possible, graphically speaking. I'd like for graphical smiles to not be displayed in this mode.

Is this possible?

Thanks,

Admin
02-27-2002, 02:20 PM
In functions.php replace this:
return bbcodeparse2($bbcode,$dohtml,$dobbimagecode,$dosmi lies,$dobbcode);
with this:
global $styleid;
return bbcodeparse2($bbcode,$dohtml,$dobbimagecode,iif($s tyleid!=XXX, $dosmilies, 0),$dobbcode);
and replace XXX with that special styleID.

jcroft
02-27-2002, 04:49 PM
Thanks, firefly!

Unfortantley, it didn't seem to work. I'm still getting smiles. :D

jcroft
02-27-2002, 04:54 PM
Whoops! My bad...it does work. Thanks so much, man!

Jeff

Admin
02-27-2002, 05:20 PM
I wouldn't be surprised if it didn't work, I was in a hurry. :)

jcroft
02-27-2002, 09:16 PM
Well, it does. Works prefectly. Thanks again!