Quote:
Originally Posted by MB Dreamz
How do we add the "Last Post" column back?
|
This was posted in the other thread. Worked like a charm for me.
Quote:
Originally Posted by LockeAG
To add again the LAST POST Column .
In FORUMHOME TEMPLATES > forumhome_forumbit_level1_nopost
find
Code:
<td class="thead" width="75">$vbphrase[threads]</td>
Add Above
Code:
<td class="thead" width="175">$vbphrase[last_post]</td>
In FORUMHOME TEMPLATES > forumhome_forumbit_level1_post
find
Code:
<td class="alt1">$forum[threadcount]</td>
Add Above
Code:
<td class="alt2" >$forum[lastpostinfo]</td>
In FORUMHOME TEMPLATES > forumhome_forumbit_level2_post
find
Code:
<td class="alt2">$forum[threadcount]</td>
Add Above
Code:
<td class="alt2" >$forum[lastpostinfo]</td>
See'a
|