I need help adding TinyMCE to the post form on my page at http://www.fsa-cc.org/sps-editor/. Password is testingGravity.
Following directions found elsewhere on this forum, I added an HTML block with this code:
<script type="text/javascript" src="/wp-content/plugins/tinymce/jscripts /tiny_mce/tiny_mce.js ">
</script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
});
</script>
<textarea id="elm1" name="elm1" rows="15" cols="10" style="width: 80%">TEST</textarea>