How to turn off emoticons

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

Comments

  • Which edit toolbar are you using?

    The Advanced Editor with 2.2?

    Buttonbar?

    Have you tried disabling the Emoji plugin?

  • 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.