6
Quote:
irmtfan wrote:
i bookmark this thread.
now the next question it how to change all textarea to tinyeditor?
Does this makes sense? To change ALL textarea to tinyeditor?
Here a short hack (not tested) which turns plain textareas to a reduced tinyeditor (reduced means has the same features as the standard dthml-editor):
Edit class/xoopsform/formtextarea.php and replace function render with this new function render:
function render(){
$ret = ' ';
$ret .= "";
return $ret;
}
You can add more plugins and button. Good luck!