MyBB Community Forums

Full Version: Global Announcement Images issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a few global announcements up and for some reason the image next to the thread isn't showing and when I look at the URL of it in properties, it isn't giving me a full image path.

It gives me this:

Quote:http://www.forumseed.com/images/Fusion/folder

See my site for example:
http://www.forumseed.com/forumdisplay.php?fid=42

On default theme, the image is in "images/folder.gif"

What should I do to adjust this? I am new to MyBB, thanks.
Can you go to Admin CP --> Templates --> Modify/Delete --> *Expand your template set* --> Forum Display Templates --> forumdisplay_announcement, copy the contents of that template, and paste it here as a reply?
<tr>
<td align="center" class="trow1"><img src="{$theme['imgdir']}/{$folder}" /></td>
<td align="center" class="trow1">&nbsp;</td>
<td width="100%" class="trow1"><strong>{$lang->announcement_prefix}</strong> <a href="announcements.php?fid={$fid}">{$announcement['subject']}</a></td>
<td align="center" class="trow1"><a href="member.php?action=profile&amp;uid={$announcement['uid']}">{$announcement['username']}</a></td>
<td align="center" class="trow1">-</td>
<td align="center" class="trow1">-</td>
{$rating}
<td class="trow1" style="white-space: nowrap">{$postdate} {$posttime}</td>
{$modann}
</tr>

This is on the Fusion theme I am using.
replace:

<td align="center" class="trow1"><img src="{$theme['imgdir']}/{$folder}" /></td>

with

<td align="center" class="trow1"><img src="{$theme['imgdir']}/{$folder}.gif" /></td>


that should fix the broken image Smile