Quote:
Originally Posted by serhwee
I installed in VB 4.2, found that when editing a post it cannot use WYSIWYG mode. Any solution?
|
I have not had this issue in 4.2 as long as WYSIWYG editing controls are enabled for the specific editor in question. I thought I had the same problem but then soon found out I had WYSIWYG disabled for Quick Edit in vBulletin's settings.
If you still have problems, the product uploaded here might not be up-to-date with some changes I've made.
Check the plugin for this product at hook
editor_toolbar_end. Look for a line like:
Code:
$forumid .= '&p=' . $post['postid'];
The very next line should be:
Code:
if (is_object($cke))
{
$cke->setEditorParseType($forumid);
}
If it's not, then add it.