Wordpress Wysiwyg / TinyMCE Add-ons
March 16, 2006 - Updated for latest version of Wysi-Wordpress.
IEspell
Adds the spell-checker IEspell to the wysiwyg. Note: This plugin only works in Internet Explorer and requires the installation of the IESpell program on your local computer.
1. Download and install IESpell here. Install it on your local computer.
2. Download the IEspell plugin add-on here:
iespell.zip
3. Drop the entire iespell folder into the wp-content/plugins/Wysi-Wordpress/plugins directory.
4. Add the code below to Wysi-Wordpress/wordpress.js
Find this:
plugins : "emotions,imagebrowser,dictionary",
Add iespell, so that it looks like this:
plugins : "emotions,imagebrowser,dictionary,iespell",
Now, find this:
theme_advanced_buttons2_add : "link,unlink,separator,imagebrowser,
Add the iespell button, like this:
theme_advanced_buttons2_add : "iespell,link,unlink,separator,imagebrowser,
Tables
Adds a table-insert button to the wysiwyg.
1. Download the tables plugin here:
table.zip
2. Drop the entire table folder into the Wysi-Wordpress/plugins directory.
3. Add the code below to Wysi-Wordpress/wordpress.js
Find this:
plugins : "emotions,imagebrowser,dictionary",
Add table, like this:
plugins : "table,emotions,imagebrowser,dictionary",
Find the line:
theme_advanced_buttons2_add : "link,unlink,separator,imagebrowser,
Add table to this line, like so:
theme_advanced_buttons2_add : "table,link,unlink,separator,imagebrowser,
Finally, find the line:
theme_advanced_disable : "strikethrough,visualaid,anchor,zoom,table,row_before,
Remove the word table from this line, change it to:
theme_advanced_disable : "strikethrough,visualaid,anchor,zoom,row_before,
Search & Replace
Adds a Search and Replace function to the Wysiwyg.
1. Download the Search and Replace plugin add-on here:
searchreplace.zip
2. Drop the entire searchreplace folder into the wp-content/plugins/Wysi-Wordpress/plugins directory.
3. Add the code below to Wysi-Wordpress/wordpress.js
Find this:
plugins : "emotions,imagebrowser,dictionary",
Add searchreplace, so that it looks like this:
plugins : "emotions,imagebrowser,dictionary,searchreplace",
Now, find this:
theme_advanced_buttons2_add : "link,unlink,separator,imagebrowser,
Add the searchreplace button, like this:
theme_advanced_buttons2_add : "searchreplace,link,unlink,separator,imagebrowser,

