Re: simple way to add TinyMCE to BBpress
fel64 wrote: How did you make it work?
Its easy to install really. You have the main tinymce folder which I opened and uploaded the contents to the ‘my-plugins’ folder. This is the mistake I made.
- Just upload the jscript folder within the tinymce folder to my-plugins
- Edit header.php in your bbpress template, adding the reference to the javascript
This is part of the code which I copied, which you put before the </head> closing tag in header.php.
<script language=”javascript” type=”text/javascript” src=”http://example.com/bbpress/my-plugins/jscripts/tiny_mce/tiny_mce.js”></script>
Change to:
<script language=”javascript” type=”text/javascript” src=”my-plugins/jscripts/tiny_mce/tiny_mce.js”></script>
The FULL code you put in header php is the top of the page, but this bit is important.