I am trying to implement visual editing for subscribers in bbPress. The options offered by the Theme found in Theme Options (Topic/Reply Quicktags) are not user friendly for basic users. I have added the following code to the functions.php in a child theme
// Allow Wordpress Visual Editor in bbPress */
add_filter(‘bbp_after_get_the_content_parse_args’, function($args = array()){
$args[‘tinymce’] = true;
$args[‘teeny’] = false;
$args[‘quicktags’] = false;
return $args;
});
This works perfectly for Admins but does not display for Subscribers. How can I get the TinyMCE to display for Subscribers when creating Topics or Replies in bbPress. I will add the Credentials in a secure note.
Jim
