Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

How to turn off emoticons

Can't find the answer to this anywhere.
How do i turn off/remove emoticons?
I mean, completely?

Comments

  • Options
    whu606whu606 I'm not a SuperHero; I just like wearing tights... MVP

    Which edit toolbar are you using?

    The Advanced Editor with 2.2?

    Buttonbar?

    Have you tried disabling the Emoji plugin?

  • Options
    R_JR_J Ex-Fanboy Munich Admin

    Add $Configuration['Garden']['EmojiSet'] = none; to your /conf/config.php.
    If you use the advanced editor, you have to add the following code "somewhere":

    public function editorPlugin_toolbarConfig_handler($sender, $args) {
        $args['actions']['emoji'] = false;
    }
    

    You could either
    a) use a simple plugin where you enclose that,
    b) add it to the themehooks file of your custom theme (if you have one)
    c) add it to conf/bootstrap.before.php

Sign In or Register to comment.