Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

How to set basic editor as default?

Quote Reply
How to set basic editor as default?
I didn't see an option in admin. Is it possible by editing the templates?

Jason
Quote Reply
Re: [wickedmoon] How to set basic editor as default? In reply to
Which editor it uses is based on the user setting for user_advanced_editor. You can change the default for new users by going to: http://yourdomain.com/path/to/gforum/admin/db.cgi?db=User&do=editor_columns&modify=user_advanced_editor

You have to enter the url yourself as the column is 'protected'. Change the default value to 0 (ie. don't use the advanced editor by default). If you don't mind wiping out your user's preferences, you can change it globally by updating the column's value in the user table.

Adrian
Quote Reply
Re: [brewt] How to set basic editor as default? In reply to
That's great, thanks. I'm looking around for how to update it globally for all users. Where do I go for that?

Jason
Quote Reply
Re: [wickedmoon] How to set basic editor as default? In reply to
Tools => SQL Monitor
then do something like:
Code:
UPDATE tablePrefix_User SET user_advanced_editor = 0

Adrian
Quote Reply
Re: [brewt] How to set basic editor as default? In reply to
Many thanks, worked a treat.

Jason