Is there any way in Wordpress to use a richt-text-editor (preferable the build in TinyMCE) on the comment form textarea in the frontend? I had such a feature in earlier versions, using the plugin "TinyMCEComment", but that one is not developed any further and is broken on 3.x versions. I've tried all related plugins on a Wordpress 3.4 installation, none of them is working (e.g. can't insert links, missing labels, …).
I also tried several ways of creating a plugin to enable the RTE for comments, like adding the the JS code manually. My last approach looked like:
function commentTinyMCE() {
wp_editor( '', 'comment', array(
'media_buttons' => false,
'teeny' => true,
) );
}
/* hook into WordPress */
add_action('wp_footer', 'commentTinyMCE' );
As of what I could say after debugging is, that the function wp_editor does nothing.
Right now it seems to me, that is it impossible to integrate a useful, working RTE into the comment forms. Quicktags above the form is not what my customers are after.
Any help would be appreciated.