Log in

View Full Version : Disable Smilies in Posts


zetetic
09-07-2004, 10:00 PM
This small hack will give your users the option of disabling smilies in the user control panel. When they check the "Disable Smilies" box in their profile options, smilies in posts will no longer be parsed. (In other words, the text in colons won't be converted to images).

Create a new User Profile Field

Go to your ACP --> User Profile Fields --> Add New User Profile Field

Select "Multiple Selection Checkbox"

Click "Continue"

Fill in the following fields with this info (if it's not mentioned, leave default):

Title = Disable Smilies
Description = Click here to disable smilies in posts
Limit Selection = 1
Boxes Per Line = 1
Options = Disable
Filed Editable by user = Yes
Field Hidden on Profile = Yes
Field Searchable on Members List = No
Show on Members List = No
Which page displays this option? = Options: Thread Viewing

Click "save" and take note of the field number of your new field!

Next:

Open /forum/includes/functions_bbcodeparse.php

Find:
if ($dosmilies)

Replace with (changing XX to the field number from above):
if (($dosmilies) && $bbuserinfo['fieldXX'] == False)
Save your changes and you're done!

Phalynx
09-08-2004, 07:05 AM
Thanks for sharing!

Eagle Creek
09-08-2004, 12:18 PM
Thanks for sharing!
Thx!

Does it still work on 3.0.3?

Polo
09-08-2004, 01:11 PM
Thanks for sharing your work with the community :)

zetetic
09-08-2004, 05:04 PM
My pleasure! :)

I'm not sure about 3.0.3 Soccerquest. I've got way too much customization to try upgrading just yet.

Eagle Creek
09-08-2004, 05:18 PM
My pleasure! :)

I'm not sure about 3.0.3 Soccerquest. I've got way too much customization to try upgrading just yet.
Roger that!

I'll just try it out then :).

chikkoo
07-04-2005, 05:50 AM
Does it works with 3.07?

I tried, but still not effect.

lordofgun
10-12-2005, 02:24 PM
Can someone port this over to 3.5.0? I'd be very greatful!! I'm trying to create a style that will make it easier for my users to browse at work without being caught.

Thanks so much!

Zelos
09-08-2006, 06:07 AM
Does this work with 3.6?

eether
09-12-2006, 04:48 PM
Does this work with 3.6?doesnt look like it

buro9
11-20-2006, 09:58 PM
Put this as a new plugin within: bbcode_parse_start

// HACK : START : DISABLE SMILIES
if ($this->registry->userinfo['fieldXX'] == '1') {
$dosmilies = false;
}
// HACK : END : DISABLE SMILIES


The only drawback is that you cannot cache your parsed posts if you use this.

pmkb
05-04-2008, 12:43 PM
Put this as a new plugin within: bbcode_parse_start

// HACK : START : DISABLE SMILIES
if ($this->registry->userinfo['fieldXX'] == '1') {
$dosmilies = false;
}
// HACK : END : DISABLE SMILIES


The only drawback is that you cannot cache your parsed posts if you use this.

I am looking at this as a possible solution for photosensitive members who don't want to see animated smilies. Can anyone explain the issue with post caches? If I implement a plugin with the above code (3.7), do I need to do anything else? If I don't do anything else, is it possible members with profile field set to disable smilies will still see them? If I have to disable a cache, any idea how this will affect the performance of the forum?

pmkb
01-14-2009, 03:02 PM
Thanks to sockwater @ vb.com, a solution of sorts exists that does not cause problems with the caching system:

http://www.vbulletin.com/forum/showthread.php?t=295969