2
Hack for Koivi WYSIWYG in Wordbook v1.16
Edit admin/entry.php around line 13:
// -- General Stuff -- //
include( "admin_header.php" );
// hack wysiwyg
include_once XOOPS_ROOT_PATH . "/class/wysiwyg/formwysiwygtextarea.php";
// end hack
And around line 100:
//hack for wysiwyg
// $def_block = new XoopsFormDhtmlTextArea(_AM_WB_ENTRYDEF, 'definition', $definition, 15, 60 );
$def_block = new XoopsFormWysiwygTextArea(_AM_WB_ENTRYDEF, 'definition', $definition, '100%', '200px','');
//end hack
For WYSIWYG in frontside submit form edit include/storyform.inc.php around line 16:
include XOOPS_ROOT_PATH . "/class/xoopsformloader.php";
// hack wysiwyg
include_once XOOPS_ROOT_PATH . "/class/wysiwyg/formwysiwygtextarea.php";
// end hack
and around line 34
//$def_block = new XoopsFormDhtmlTextArea( _MD_WB_DEFINITION, 'definition', _MD_WB_WRITEHERE, 15, 50 );
//hack for wysiwyg
$def_block = new XoopsFormWysiwygTextArea(_MD_WB_DEFINITION, 'definition', _MD_WB_WRITEHERE, '100%', '200px','');
// end hack