Is there some way to set TinyMCE options in the TinyMCEComments plugin?
I added the following in the functions.php for my theme:
function change_mce_options( $init ) {
$init['extended_valid_elements'] = 'span[!class]';
return $init;
}
add_filter('tiny_mce_before_init', 'change_mce_options');
This change to the TinyMCE options works when using TinyMCE to edit WordPress articles but it doesn't work when adding comments using TinyMCE through the TiunyMCEComments plugin.