hmm. Well the problem is in the forumdisplay template. You did install the product file right?
Code:
<if condition="$show['threadicons'] && !is_member_of($vbulletin->userinfo, $postpreviewusergroups) && $vbulletin->options[ajaxpostpreview_enable] == 1 && (!(in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))))">
Try playing with that conditional, for some reason all of them are not returning true.
It checks:
- ThreadIcons are on
- Your Usergroup is not in the usergroups you added to the exclude list
- Makes sure the hack is turned on
- and the forumID is not in the excluded list
only if ALL those return true it sets the colspan to 3 (which is what you need here).
Add the following under $navbar in the forumhome template to check if all the conditions return true:
Code:
<if condition="$show['threadicons']">Icons: True
<br />
<else />
Icons: False
<br />
</if>
<if condition="!is_member_of($vbulletin->userinfo, $postpreviewusergroups)">Not in Excluded Group: True
<br />
<else />
Not in Excluded Group: False
<br />
</if>
<if condition="$vbulletin->options[ajaxpostpreview_enable] == 1">
Mod Enabled: True
<br />
<else />
Mod Enabled: False
<br />
</if>
<if condition="(!(in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))))">
Forum Not Excluded: True
<br />
<else />
Forum Not Excluded: False
<br />
</if>
If they're not all true, it won't span 3 columns.