@lflier
Wow, this really solves the issue with Visual Editor content styling. Thank you very much!
unction bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = array(
'content_css' => '/wp-content/themes/mytheme/css/tinymce-editor.css',
);
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
How to add this to: https://codex.bbpress.org/enable-visual-editor/ ?