MyBB Community Forums

Full Version: Set view source mode for all members/default?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way I can check the 'put the editor in source mode by default' option for all members without asking them to  change it manually? Currently the normal editor view is causing problems with some formatting issues for our posts. Using 1.8.11 currently. I know I may need to run a SQL query, but I'm not totally familiar with how to do so. Thanks!
you can run below SQL queries (see this guidance if required)
ALTER TABLE `mybb_users` CHANGE `sourceeditor` `sourceeditor` TINYINT(1) NOT NULL DEFAULT '1'; 
UPDATE `mybb_users` SET `sourceeditor` = '1' WHERE `sourceeditor` = '0'; 
Thank you for the quick response! It seems to have worked. Smile