3
Adding Kiovi Editor to block.
If
You have a copy of "wysiwyg" placed in your "class"(folder).
Then, try this.
include the following.
include XOOPS_ROOT_PATH . "/class/wysiwyg/formwysiwygtextarea.php";
<<==in your "class/xoopsformloader.php"!
now open up your >>>modules\system\blocks/system_block.php
find line #56 (I think...)
replace
$form->addElement(new XoopsFormDhtmlTextArea(_MB_SYSTEM_CONTENT, 'options[0]', htmlspecialchars($ts->stripSlashesGPC($options[0]), ENT_QUOTES), 15, 60));
with
$form->addElement(new XoopsFormwysiwygTextArea(_MB_SYSTEM_CONTENT, 'options[0]', htmlspecialchars($ts->stripSlashesGPC($options[0]), ENT_QUOTES), 15, 60));
there you go.
at your own risk.