in which part of the site (front end/backend) and for which users (all/keymaster etc.)
Part: front end
User: everybody but not for the keymaster (administrator)
sorry for late answer
do you know what you did to enable the visual editor – just changes how I give you the solution
I installed TinyMCE Advanced and BuddyPress Forum Editor (BP Forum Editor enabled the visual tab I think)
This should work
add_filter( 'bbp_after_get_the_content_parse_args', 'rew_disable_text_editor' );
//editor bbpress
function rew_disable_text_editor( $args = array() ) {
$args['tinymce'] = true;
$args['quicktags'] = false;
if( current_user_can('administrator')) $args['quicktags'] = true;
return $args;
}
add this to your functions file
I’ve added it to bbpress/includes/core/functions.php, but it doesnt work. It only redirects me as admin to the homepage when I click on the tabs.
sorry – it needs to go in your theme’s functions file
Functions files and child themes – explained !
Same problem as explained before :/
ok, are you using my style pack
bbp style pack
if so the topic/reply form tab has options to do this.
If not, consider installing it !
Good morning, I have a similar problem. Keymasters can use tinymce advance instead all others can not. How should I do? Thank you