I'm Drupal 5.2, the 5.x-1.9 tinymce.module and TinyMCE 2.1.2 compressed.
I've tried to install two plugins with no luck. I can't tell if it's the plugins themselves or a Drupal issue.
I've placed the plugin in the correct directory and added
$plugins['heading'] = array();
$plugins['heading']['theme_advanced_buttons3'] = array('h1','h2','h3','h4','h5','h6');
to plugin_reg.php
The buttons show up under "Buttons and plugins" but not in the editor itself. I thought mabye I had to compress the js source, but that didn't work either.
The two I've tried have been:
Blockquote Button
and
Heading
Thanks for your help.
Comments
Comment #1
dnewkerk commentedI have the heading plugin working with the same configuration. If I had to guess, I think it is the compression that is causing it to now show up correctly for you - I had similar issues while configuring TinyMCE, so I disabled compression and it fixed my situation. I think you can do a quick test by looking in your TinyMCE folder and finding the gzip files it generates and stores there (at least it did on mine) and delete them - it may then make a new copy and you'll see your latest changes. In my case I decided to leave compression disabled until development on my site is complete, since it was getting very inconvenient.
Anyhow, let me know if this helps - or if not we can try something else.
Comment #2
mupsi