How to add CLSEDITOR
CLEDITOR is a little plugin that allows HTML-Edit in comments, description .....
is a little sister to tinyMCE.
Having it installed I just got it in the comment-textarea of the events, not the listings. Following change in Plugins - Source in the first file
cleditor-for-wordpress/cleditor-for-wordpress.php
adds CLEDITOR to comment field in the listing.
just look in
http://www.goodbusiness.at/listings/slowmo/
add_action( 'wp_enqueue_scripts', 'cleditor_enqueue' );
?>
<?php
function add_cleditor() { ?>
<!-- CLEditor starts -->
<script>
<!--
jQuery(document).ready(function() {
jQuery("#comment,
#add-review-form textarea, #reply-review-form textarea, #new-topic-post textarea, #new-post textarea, #whats-new-textarea textarea, #post-topic-reply textarea").cleditor();
});
//-->
</script>
<!-- CLEditor ends -->