Hmm.. don't know if this is a forum home template mod as it also edits a forumdisplay template as well.
Ever wanted the forum moderators to show up underneath the forum description on your forum skin? Well, It is possible with template edits.
Installation:
</p>
- Login to your Admin Control panel and open the style manager.
- Edit the templates of the style you wish to apply this to.
- Double-click Forum Home Templates to expand it.
- Double-click the template: FORUMHOME
- Find and delete:
Code:
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
- Find: (3x)
Code:
<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>
- Change to:
- Save the template bit.
- Double-click the template: forumhome_forumbit_level1_nopost
- Find:
Code:
<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>
- Change to:
- Save the template bit.
- Double-click the template: forumhome_forumbit_level1_post
- Find:
Code:
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
- Add Below:
Code:
<if condition="$forum[moderators]"><br /><div class="smallfont"><b>$vbphrase[moderator]s:</b> $forum[moderators]</div></if>
- Find and delete:
Code:
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>
- Save the template bit.
- Double-click the template: forumhome_forumbit_level2_nopost
- Find:
Code:
<if condition="$vboptions['showmoderatorcolumn']">5<else />4</if>
- Change to:
- Save the template bit.
- Double-click the template: forumhome_forumbit_level2_post
- Find:
Code:
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
- Add Below:
Code:
<if condition="$forum[moderators]"><br /><div class="smallfont"><b>$vbphrase[moderator]s:</b> $forum[moderators]</div></if>
- Find and delete:
Code:
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>
- Double-click Forum Display Templates to expand it.
- Double-click the template bit: FORUMDISPLY
- Find and delete:
Code:
<if condition="$vboptions[showmoderatorcolumn]">
<td class="thead">$vbphrase[moderator]</td>
</if>
- Save that template bit.
- Double-click User Control Panel Templates to expand it.
- Double-click the template bit: USERCP
- Find:
Code:
<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>
- Change to:
- Save that template bit.
- Repeat for additional styles.
Enjoy!
Live Demo: http://www.zcworld.net
Update: Fixed the table inside the UserCP If user has subscribed forums.
NOTE: My forum is using a template alteration where you can collapse the forum descriptions and the thread/reply count away and not be bothered by them so I really need an actual LIVE DEMO. Thank you.