MyBB Community Forums

Full Version: swith last posts to be in front of threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
well i just got the vbulliten skin, and there is one thing I would like to change to be even more like vb how can I make the last post colum be before the threads colum,

thx

Here's the way:
Edit the forumbit_depth1_cat template.
Find:
<tr>
<td class="tcat" width="35">&nbsp;</td>
<td class="tcat" width="59%"><strong>$lang->forumbit_forum</strong></td>
<td class="tcat" width="65" align="center" nowrap="nowrap"><strong>$lang->forumbit_threads</strong></td>
<td class="tcat" width="65" align="center" nowrap="nowrap"><strong>$lang->forumbit_posts</strong></td>
<td class="tcat" width="200" align="center"><strong>$lang->forumbit_lastpost</strong></td>
</tr>
Replace with:
<tr>
<td class="tcat" width="35">&nbsp;</td>
<td class="tcat" width="59%"><strong>$lang->forumbit_forum</strong></td>
<td class="tcat" width="200" align="center"><strong>$lang->forumbit_lastpost</strong></td>
<td class="tcat" width="65" align="center" nowrap="nowrap"><strong>$lang->forumbit_threads</strong></td>
<td class="tcat" width="65" align="center" nowrap="nowrap"><strong>$lang->forumbit_posts</strong></td>
</tr>
Open the forumbit_depth1_forum and forumbit_depth2_forum template
Find:
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$threads</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$posts</td>
<td class="$bgcolor" valign="top" align="right" nowrap="nowrap">$lastpost</td>
Replace with:
<td class="$bgcolor" valign="top" align="right" nowrap="nowrap">$lastpost</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$threads</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$posts</td>

These templates can be found in Admin CP --> Templates --> Modify/Delete --> Expand your template set --> Forum Bit Templates
thanks you rule