XF 1.2 Rich text editor

John

Well-known member
Unless I'm blind, I don't see a setting in the ACP to globally assign the Rich Text Editor to all users. Is this correct?
 
I do not believe you can do this. Quick glance (and search for rich, editor, and RTE) shows no option. However, you can enable it individually per user.

Alternatively, if you are willing to run queries, this will turn it on:
Code:
UPDATE `xf_user_option` SET `enable_rte` = 1
 
Top Bottom