Quote:
Originally Posted by NLP-er
Hi, what I need to do to have some link in nav bar to most rated posts?
|
in your navbar template you can use the following:
find
PHP Code:
<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
</if>
and underneath add
PHP Code:
<if condition="$show['member']">
<td class="vbmenu_control"><a href="http://www.yoursite.com/forum/helpfulanswers.php">Helpful Answers</a></td>
</if>
Hope that helps!