<?php
class YourClassDirectory_CustomAddon_ClassName
{
public static function editorSetup(XenForo_View $view, $formCtrlName, &$message, array &$editorOptions, &$showWysiwyg)
{
if (!$showWysiwyg || $view->getTemplateName() != 'thread_create')
{
return false;
}
$editorOptions['height'] = "500px";
}
}