MyBB Community Forums

Full Version: Toplink for registered members only
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Just wondering how one would only show a certain toplink to registered members.
Well, you can either modify the way the welcomeblock for members works (to include the toplinks bit) or even easier you can use the template conditionals plugin to only show a certain toplink to registered members:
http://mybbhacks.zingaburga.com/forumdisplay.php?fid=38
Im quite new to mybb would you be able to explain both methods to me, thanks.
Template conditionals would be more straight-forward in my opinion.

Install the template conditionals plugin in your forum, which can be found here:
http://mybbhacks.zingaburga.com/showthread.php?tid=464

In your AdminCP, go to Templates > *Your Theme Templates* > Header Templates > header

Add the following list element with the template conditionals code attached:
<if $mybb->user['uid'] != 0 then>
<li><a href="URL GOES HERE">THIS LINK IS SEE BY REGISTERED MEMBERS</a></li>
<else>
<li><a href="URL GOES HERE">THIS LINK IS ONLY SEEN BY GUESTS</a></li>
</if>