MobileHacks
New Member
This is just a very quick and easy modification to people who prefer to have the number of posts column appear in front of the number of threads on forumhome.
Screenshot
Before Edit:
After Edit:
Now to do it
Login to your AdminCP.
Click on Styles & Templates on the left side.
Select the template you want to edit and expand it
Click on the Forum Home Templates to expand that
Now click on the template called "FORUMHOME"
It's time for the code edits
Find:
Replace with:
and your done
Screenshot
Before Edit:
After Edit:
Now to do it
Login to your AdminCP.
Click on Styles & Templates on the left side.
Select the template you want to edit and expand it
Click on the Forum Home Templates to expand that
Now click on the template called "FORUMHOME"
It's time for the code edits
Find:
PHP:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[LEFT]">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead> [/LEFT]
PHP:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[LEFT]">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[posts]</td>
<td class="thead">$vbphrase[threads]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead> [/LEFT]