Hi @jakobuz
Thanks for using this plugin.
I have checked this plugin with latest WP version with default theme & Plugin is working fine.
Can you please provide website URL & screenshots ?
The problem was that after activating your plugin there were only buttons in the comments area. Whatever we tried, TinyMCE did not show up.
I looked further and saw in the WordPress codex an other possibility to have TinyMCE in the comment-area.
That worked for us!
That filter-function looks something like this:
add_filter( ‘comment_form_field_comment’, ‘comment_editor’ );
and than in the function ‘comment_editor()’:
wp_editor( ”, ‘comment’, array(
‘media_buttons’ => false,
‘tinymce’ => true
))
I’m sorry, I can not send you a link or image to our website, because it is for members only.
But anyhow: thank you very much!
Hi @jakobuz
Glad to know that your issue is resolved.