Would you consider implementing a per-user setting that would allow users to opt-out of displaying graphical smileys in posts (and auto-parsing them during composition)? Other forum software I've used has this option, and some folks (including me) really prefer it : )
For now, I found the following code snippet that @Brogan posted, could this be adapted to add to a forum's custom code to enable this type of feature?
For now, I found the following code snippet that @Brogan posted, could this be adapted to add to a forum's custom code to enable this type of feature?
PHP:
<xen:if is="!@ctaFtEnableSmilies">
.ctaFtThreadText img.mceSmilie,
.ctaFtThreadText img.mceSmilieSprite
{
display: none;
}
</xen:if>
Upvote
0