MyBB Community Forums

Full Version: Theme issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Having an issue with images not appearing in the private message area.

[Image: f2psFJp.png]

I have all the images but when I inspect element it only shows it pointing to the general folder of the image files, not actually the specific image file. 
[Image: xQFc5Ik.png]

How would I change this so it points directly to the image? So it would be /images/tg/old_pm.png etc etc.

Cheers.
It's in the private_messagebit template - though have you checked you've got the files uploaded to the correct theme's image folder ?

<img src="{$theme['imgdir']}/{$msgstatus}.png" alt="{$msgalt}" title="{$msgalt}" />
(2016-12-14, 06:22 AM)d3xt3r Wrote: [ -> ]It's in the private_messagebit template - though have you checked you've got the files uploaded to the correct theme's image folder ?

<img src="{$theme['imgdir']}/{$msgstatus}.png" alt="{$msgalt}" title="{$msgalt}" />

Yes. 

This is what I've got in the template - 
<img src="{$theme['imgdir']}/{$msgfolder}" alt="{$msgalt}" title="{$msgalt}" />

No idea why it wasn't pointing to the .png files but I've updated it to have {$msgstatus}.png instead of {$msgfolder} and the images are now working.

Cheers.