MyBB Community Forums

Full Version: Website Integration? (Where is everything defined?)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Instead of using the default portal, I am trying to integrate MyBB into my website. I have the login system working, however I am having trouble with the announcements.

Basically, I need to know what files I need to include. Right now, my announcements block shows:

{$lang->posted_by} {$announcement['username']} - {$anndate} {$anntime} {$numcomments}
{$avatar}

{$message}
{$post['attachments']}

instead of the actual values.

Any help and/or suggestions would be appreciated.
I am looking into using mybb for a complete site as well, could someone answer the above question and point me to a topic or mod article that breaks down the authentication system... or a plug-in that will let me use it throughout my site? Thanks!
i'd go for this:

http://community.mybboard.net/showthread...#pid199698

if not, search around your templates list and find the core source for {$message} etc.

for example:
{$avatar} = {$mybb->user['avatar']}

you'll find it eventually Wink