Re: BP-TinyMCE + WP 3.0 RC1
In case anyone needs help in regards to the issue:
* textareas don’t clear out on submission of activity stream updates.
Replace line 54 of bp-tinymce-js.js in the plugin folder:
j(“textarea#whats-new”).val(”);
With:
j(‘#whats-new-form’).each (function(){
this.reset();
});
And it will reset the textarea after posting,
If anyone knows a fix for allowing oEmbed to work with BP TinyMCE in Internet Explorer, can write a simple TinyMCE plugin to add the link without the autolinking which Internet Explorer adds or can get a YouTube TinyMCE plugin working – then let me know.