Hi,
for all they have the same Problem with the Editor box and become no Answer
https://vborg.vbsupport.ru/showpost....2&postcount=73
I found that the Code from iTrader is not vB standart conform.
Here is a Fix.
Fix
Create 2 new Plugins.
Title: iTrader Set parser options
Hook: bbcode_parse_start
Execution Oder: 5
PHP Code:
if ($forumid == 'itrader')
{
$dohtml = $forum['allowhtml'];
$dobbimagecode = $forum['allowimages'];
$dosmilies = $forum['allowsmilies'];
$dobbcode = $forum['allowbbcode'];
}
Plugin Active: yes
Title: iTrader Set editor options
Hook: editor_toolbar_switch
Execution Oder: 5
PHP Code:
if ($forumid == 'itrader')
{
$can_toolbar = 1;
$show['img_bbcode'] = 1;
}
Plugin Active: yes
next search in itrader_detail.php and itrader_feedback.php
PHP Code:
$editorid = construct_edit_toolbar($itrader['message'], 0, 0, 0, 1);
replace with
PHP Code:
$editorid = construct_edit_toolbar($itrader['message'], 0, itrader, 0, 1);
Sorry for my bad english.