I find that this problem come from edit template >>FORUMDISPLAY .Remember that find :
Code:
<if condition="$show['threadicons']">
<td class="thead" colspan="2"> </td>
<else />
<td class="thead"> </td>
</if>
and replace with :
Code:
<if condition="$show['threadicons'] && is_member_of($vbulletin->userinfo, $postpreviewusergroups) && $vbulletin->options[ajaxpostpreview_enable] == 1 && (!(in_array($forumid, $postpreviewforums)))">
<td class="thead" colspan="3"> </td>
<else />
<if condition="$show['threadicons'] && !is_member_of($vbulletin->userinfo, $postpreviewusergroups) || $vbulletin->options[ajaxpostpreview_enable] == 0 || in_array($forumid, $postpreviewforums)">
<td class="thead" colspan="2"> </td>
<else />
<td class="thead"> </td>
</if></if>
In file newinstall.txt has a problem that tell everybody find :
Code:
<if condition="$show['threadicons']">
<td class="thead" colspan="2"> </td>
<else />
<td class="thead"> </td>
</if>
<td class="thead" width="100%"> ===>this broblem
Sorry,my english is very bad