MyBB Community Forums

Full Version: Conditional show to "registered" group only
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys how do I get this to only show to registered group using contional template?

<div><a href="URL" class="usercp_nav_item usercp_nav_editsig">Change Signature</a></div>

Thanks
where you are putting such link - in the header ?
in the user CP just where the signature link is
I don't think it requires conditional then because UCP can be accessed only by registered users, unless you mean it shouldn't be shown for any group except Registered. Then you need this code:

<if $mybb->user['usergroup'] == 2 then><div><a href="URL" class="usercp_nav_item usercp_nav_editsig">Change Signature</a></div></if>
Glad to have you around Destroy666
Thank yo all guys!