My site is scriptbc.com. Now with the version 1.9.9.7 of front end plugin, I can create and save forums, but now, the problem is that when I select the option “SET CURRICULUM” the text-editor has an strange behaviour, some times works fine, but other times the menu bar is different, has less option, like no option to insert links , or full screen , and does not address properly the html.
I've tried everything , disable the cache , the file minification , different browsers , both with the role of teacher and the role of administrator, and nothing.
I placed two attached images , one with the editor I want and another to the editor that I do not like .
Okay please note that the text editor in the front end behaves like that because you may have chosen text mode to edit in the back end edit page default wp-editor .
When you select the text mode in the wordpress default editor in the back end edit page then this kind of editor is initialized in front end also(
https://wplms.io/support/wp-content/uploads/2015/12/malo.png) .It could not load the properties of the visual mode properly .
SO to resolve this please select the visual mode in the wp default editor .
Also check if you have disabled the visual editor from wp-admin -> Users -> your profile :
http://prntscr.com/9im3ey
Ok what i do is to add this line
add_filter( 'wp_default_editor', create_function('', 'return "tinymce";'));
to my functions.php and now everything works ok.
Thanks for sharing the solution .