Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter violacase

    (@violacase)

    Follow up.
    I found a solution. Adding this function to functions.php does the trick.

    add_filter( 'comment_form_defaults', 'custom_comment_form_defaults' );
    function custom_comment_form_defaults( $args ) {
        $mce_plugins = 'wordpress, emotions';
        ob_start();
        wp_editor( '', 'comment', array(
            'media_buttons' => false,
            'teeny' => false,
            'textarea_rows' => '5',
            'tinymce' => array( 'plugins' => $mce_plugins )
        ) );
        $args['comment_field'] = ob_get_clean();
        return $args;
    }
    Plugin Author Andrew Ozz

    (@azaozz)

    Yes, the “emotions” plugin needs an update, should be in the next version. Also see http://wordpress.org/support/topic/missing-emoticons?replies=3.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘emotions button not showing’ is closed to new replies.