Thread Starter
djoep
(@djoep)
I found the problem with buddypress…
this plugin tests for is_single() before application of the editor. Apparently is_single() is false for all of the pages where one might want a wysiwyg editor to show up in buddypress.
By the way, you can put a comma delimited list of element selectors in line 25… might be nice to put this in a setup parameter so it doesn’t get lost in case of a plugin upgrade.
example:
$(“#new-topic-post textarea, #new-post textarea, #whats-new-textarea textarea, #post-topic-reply textarea”).cleditor();
joe