MyBB Community Forums

Full Version: Footer register see
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
I want to see only the members of the'll add footer links
do you want that only logged in members should be able to see the links in footer ?
for that you can use template conditionals plugin (more details)
Thanks you.
I do not understand exactly
Welcome to the panel members did footer.
I want to see only the members
if you install template conditionals plugin then you can use code like below
<if !in_array($mybb->usergroup['gid'], array('1', '7')) then>
content here is not visible to guests 
</if>
(group id 1 is for guests and 7 is for banned)
thank you very much
worked