MyBB Community Forums

Full Version: How to make photos not link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I have a little problem with images. When user add image to thread, image appears as link. It's possible to make images appear for everyone, forever without possibility  to turn this off?
Can you show us how the image (or link in this case) is appearing? A screenshot will do.
(2018-10-24, 02:10 PM)Wires Wrote: [ -> ]Can you show us how the image (or link in this case) is appearing? A screenshot will do.
[Image: srodh0.png]
To make all images display for all users run the following query:

UPDATE mybb_users SET showimages = 1;

To prevent users from turning off images (or making them display as links like your screenshot), you'll need edit the following templates:

In usercp_options, find and remove the following:

<tr>
<td valign="top" width="1"><input type="checkbox" class="checkbox" name="showimages" id="showimages" value="1" {$showimagescheck} /></td>
<td><span class="smalltext"><label for="showimages">{$lang->show_images}</label></span></td>
</tr>