Hi,
which theme are you using and which plugins are activated?
Cheers,
Arne
It’s my own theme but it still happens with the Twenty Ten theme, i’ve tested all plugins i’m using (listed below) and jquery colorbox was the one that seems to be causing the issue. It actually causes a javacript error when you click the ‘visual’ button: “cannot call method ‘getLength’ of null”
Does this plugin even add any javascript to admin pages?
- Exclude Pages from Navigation
- Google XML Sitemaps
- Headspace 2
- Insert Link Class Plugin
- MM Forms Pro
- NextGEN Gallery
- Page Menu Editor
- WordPress Hit Counter
- YouTube Embed
Hi,
actually, “Insert Link Class” breaks the editor since it just adds a flag to the editor without checking whether it’s already there.
I’ll write a bug report.
This is how to temporarily fix it:
* Log in to your server with an FTP program.
* Go to your plugin folder, then the insert-link-class-plugin folder
* open the file “insert-link-class-plugin.php” and find the following line:
add_filter('mce_buttons_2', array(&$this, 'TinyMCEButtons'), 999);
and change it to:
add_filter('mce_buttons_2', array(&$this, 'TinyMCEButtons'));
Cheers,
Arne