MyBB Community Forums

Full Version: Image Code not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I used a image code as example link :- www.domain.com/example.png

then it shows as [Image: www.domain.com/example.png]

This happens with video code also.


Ty Got It

Quote:User CP >> Edit Options >> Display images in posts

But I want it by default. How to do it?
(2015-01-03, 12:54 PM).m. Wrote: [ -> ]SQL queries if required
ALTER TABLE `mybb_users` CHANGE `showimages` `showimages` tinyint(1) NOT NULL default '1';
UPDATE `mybb_users` SET `showimages` = '1' WHERE `showimages` = '0';

common SQL queries
If new users join then it should be default na. I cant be sitting and doing this SQL queries on new users everytime
^ that's what we are trying to adjust with the first given query.
and the second query is for changing the setting of existing members
ok got it thank you