Quote:
Originally Posted by bada_bing
1. insert a link called Itrader in my forum menu with a condition that only logged in members can see.
|
iTrader has a permission system. You can disallow groups from viewing the itrader pages. If you want a link in your navbar to only show to members just add it to your "Quick Links' menu. There is a template edit for this included in the zip file in this post:
https://vborg.vbsupport.ru/showpost....&postcount=254
If you want to have a individual link in your navbar to take logged in members to their iTrader page instead of in "Quick Links" menu use:
PHP Code:
<if condition="$show['member']"><td class="vbmenu_control"><a href="$vboptions[bburl]/itrader.php?$session[sessionurl]">My iTrader</a></td></if>
Put that where you want the link. For example, to add it to the right of the UserCP link, add it below:
PHP Code:
<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
</if>
Quote:
Originally Posted by bada_bing
2. I need to insert the rating only for certain forums (selling, trading)
|
This is also included in the zip file.