Posts: 1,062
Threads: 24
Joined: Jun 2011
Reputation:
69
2015-01-13, 09:03 PM
As I can see, the option in the User control panel "Put the editor in source mode by default" is selected by default when a new member subscibes.
Is it possible to have it unselected by default? Now I have to explain new members every time that they must unselect this option by modifying their UserCP options.
Regards, Ad Bakker (NL)
Posts: 21,678
Threads: 5
Joined: Aug 2011
Reputation:
2,313
2015-01-14, 04:37 AM
(This post was last modified: 2015-01-14, 09:25 AM by .m..)
IIRC, it is not selected by default!
anyway, you can run below SQL queries (see this guidance if required)
ALTER TABLE `mybb_users` CHANGE `sourceeditor` `sourceeditor` TINYINT(1) NOT NULL DEFAULT '0';
UPDATE `mybb_users` SET `sourceeditor` = '0' WHERE `sourceeditor` = '1';
Posts: 1,062
Threads: 24
Joined: Jun 2011
Reputation:
69
2015-01-14, 09:18 AM
(2015-01-14, 04:37 AM).m. Wrote: IIRC, it is not selected by default!
Thanks, but not with me!! I just registered myself as a new member and got this at my first visit of my UserCP->Change Options:
But I will try the options you suggested.
Regards, Ad Bakker (NL)
Posts: 21,678
Threads: 5
Joined: Aug 2011
Reputation:
2,313
2015-01-14, 09:26 AM
rectified a mistake in earlier post ..
Posts: 1,062
Threads: 24
Joined: Jun 2011
Reputation:
69
2015-01-14, 09:43 AM
I just ran the SQL queries, and all existing members are changed. But the default remains "1".
Any chance to change this to "0" too?
Regards, Ad Bakker (NL)
Posts: 21,678
Threads: 5
Joined: Aug 2011
Reputation:
2,313
2015-01-14, 09:50 AM
^ first query should take care of that !
ALTER TABLE `mybb_users` CHANGE `sourceeditor` `sourceeditor` TINYINT(1) NOT NULL DEFAULT '0';
Posts: 1,062
Threads: 24
Joined: Jun 2011
Reputation:
69
2015-01-14, 10:20 AM
I already thought it should, but it doesn't  .
Sorry, but I have no experience with SQL. Will have to to some study perhaps, but I already studied all my life and try to enjoy retirement now  .
Regards, Ad Bakker (NL)
Posts: 21,678
Threads: 5
Joined: Aug 2011
Reputation:
2,313
2015-01-14, 10:24 AM
^ well, if you need direct help you can PM me temporary access to web host panel (with access to database) to check it
Posts: 7,459
Threads: 144
Joined: Oct 2009
Reputation:
441
2015-01-14, 10:41 AM
Are you using a custom theme Ad? Some custom themes remove the registration checkboxes instead of hiding them. That can cause problems.
Random Fish and Sims Maniac
MY PLUGINS
Help MyBBSupport help you - remember to mark your threads as solved
Posts: 1,062
Threads: 24
Joined: Jun 2011
Reputation:
69
2015-01-14, 11:00 AM
(2015-01-14, 10:41 AM)Leefish Wrote: Are you using a custom theme Ad? Some custom themes remove the registration checkboxes instead of hiding them. That can cause problems.
No, I run the standard MyBB standard MyBB scheme. I sent your collegue access data to forum and SQL database, so I hope he can solve it.
Thanks for the suggestion!!
Regards, Ad Bakker (NL)
|