MyBB Community Forums

Full Version: Hot to set all user - Put the editor in source mode by default
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

How can I set all user to - Put the editor in source mode by default

Thanks
you can try using 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';
I would like to know that I have to run both code.

Thanks m for quick
^ yes. second query is for making source editor default for all existing users & first query is for the new users