Quote:
Originally Posted by multiplex
just wondering. i really want to high light this feature on my board. thought about adding on the forum home page right beside "Mark Forums as Read" and "View Forum Leaders". i was looking at the forum home template but i'm a little confused on how that should be coded. i would like a link that says "Meet Our Staff" beside those 2 links. can anyone suggest a solution?
|
Look in your FORUMHOME template,
Find:
Code:
<if condition="$vboptions['forumleaders']">
<a href="showgroups.php$session[sessionurl_q]">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
Replace with:
Code:
<if condition="$vboptions['forumleaders']">
<a href="showgroups.php$session[sessionurl_q]">$vbphrase[view_forum_leaders]</a></if>
<if condition="$vboptions['forumleaders']">
<a href="staff.php$session[sessionurl_q]">$vbphrase[meet_our_staff]</a></if>
</strong></div></td>
Note: You will see I edited the line I ask you to find & replaced it & added staff link.
REMEMBER TO ALWAYS BACK UP ANY TEMPLATE BEFORE YOU EDIT IT