MyBB Community Forums

Full Version: Displaying advertisements at the bottom of the page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I've got two inquiries!

How would I go about displaying a division at the bottom of all pages on my forums?

How about if I only want them to show up at the bottom of all pages for users who are not logged in?

Thank ye!
division at the bottom of all pages --> add required content at the bottom of footer template

show up for users who are not logged in --> you can use template conditionals plugin
<if $mybb->usergroup['gid'] == 1 then>
content visible only to guests (group id 1)
</if>
Thank you.