Have Number of Posts Before Number of Threads On Forumhome

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:
before.bmp


After Edit:
after.bmp


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">&nbsp;</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]
Replace with:
PHP:
<thead> 
    <tr align="center"> 
      <td class="thead">&nbsp;</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]
and your done
 
Back
Top