Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
FCKeditor WYSIWYG in Vanilla
This discussion has been closed.
Comments
look for this line
'span' => array('align' => 1, 'class' => 1, 'title' => 1),
replace it with this one
'span' => array('align' => 1, 'class' => 1, 'title' => 1, 'style' => 1),
or u can get the updated version 1.65. I added a text color button. It doesn't use valid xhtml though. it uses the font tags *yuck thoo* why does both xinha and fckeditor still use font tags for color
so he should use that instead.
have u tried it with Firefox.
In default.php :
at the beginning :
//require(FCKEDITOR_PATH . 'settings.php');
and at the end :
//$Context->StringManipulator->Formatters = array();
//$Context->StringManipulator->GlobalFormatters = array();
$Context->Configuration['DEFAULT_FORMAT_TYPE'] = "Html";
//$FCKeditorFormatter = $Context->ObjectFactory->NewObject($Context, "FCKeditorFormatter", $FCKeditor_allowed_tags, $FCKeditor_allowed_protocols);
//$Context->StringManipulator->AddManipulator("FCKeditor", $FCKeditorFormatter);
And I turned on the "HtmlFormatter" add-on without change...
If somebody knows an other solution...
This also prevents the 'Top of Page' link from working.
Anyway to prevent the text area from defaulting to active?