MyBB Community Forums

Full Version: [IMG] and [VIDEO] tags not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey everyone,

I seem to have issues displaying [IMG] and [VIDEO] tags on my forum, I have been reading on this forum and found a solution that fixed the issue.

This is the issue when trying to use the image and video tags it shows like this instead:
Quote:[Image: http://myimglink.com]

Quote:[Video: http://myvideolink.com]

Resolved by:

User CP >> Edit Options >> Display images in posts and checked it
User CP >> Edit Options >> Display videos in posts and checked it

The real problem now is everyone else has the same issue so is there a way I can force this on all users?
Go to your cPanel --> phpMyAdmin and run these in SQL tab:

ALTER TABLE `mybb_users` CHANGE `showimages` `showimages` tinyint(1) NOT NULL default '1';
 
UPDATE `mybb_users` SET `showimages` = '1' WHERE `showimages` = '0'; 

ALTER TABLE `mybb_users` CHANGE `showvideos` `showvideos` tinyint(1) NOT NULL default '1';
 
UPDATE `mybb_users` SET `showvideos` = '1' WHERE `showvideos` = '0';