For those who have problems with the automatic template edits, or who just like to do things the hard way, here are the template edits required:
First, disable the automatic template edits:
- Browse to AdminCP > vBulletin Options > Collapsable First Post Using AJAX Options
- Select No for Enable Automatic Template Editing
Now perform the following template edits:
In
FORUMDISPLAY -
FIND:
ADD AFTER:
HTML Code:
<script type="text/javascript" src="clientscript/jquery.js"></script>
<script type="text/javascript" src="clientscript/vbulletin_vbpost.js"></script>
[hr]-[/hr]
In
threadbit -
FIND: (should be the first line)
REPLACE WITH:
HTML Code:
<tr<if condition="empty($ajax_firstpost_excluded) || !in_array($forumid, $ajax_firstpost_excluded)"> id="vbpostrow_$thread[firstpostid]"</if>>
FIND:
HTML Code:
$thread[title_editable]
<div>
ADD AFTER:
HTML Code:
<if condition="empty($ajax_firstpost_excluded) || !in_array($forumid, $ajax_firstpost_excluded)"><img id="vbpostimg_$thread[firstpostid]" src="$stylevar[imgdir_button]/expand.gif" onclick="return vbpost_get($thread[firstpostid])" onMouseOver="this.style.cursor='pointer';" /></if>