MyBB Community Forums

Full Version: Forum FID?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a folder in my root folder that has images numbered to match the forum topics fid I am trying to add topic icons to the portal page to allow users to know the correct topic the forum refers too.

I have tried a few different ways at accomplishing this, but have had no luck. Again the images match the forum fid, so all I need is for the fid to show before .png

<a href="{$mybb->settings['bburl']}/{$announcement['threadlink']}"><img src="/images/icon/{$mybb->settings['fid']}.png" width="45px" height="45px" alt="" /></a>
If I'm correct in guessing what data is set into the $announcement array, the following should work.

<a href="{$mybb->settings['bburl']}/{$announcement['threadlink']}"><img src="/images/icon/{$announcement['fid']}.png" width="45px" height="45px" alt="" /></a>
Thanks! I thought I had tried that but guess i must of missed or spelled something wrong.

<a href="{$mybb->settings['bburl']}/{$announcement['threadlink']}"><img src="/images/icon/{$announcement['fid']}.png" width="45px" height="45px" alt="" /></a></a>