• Resolved s1r0n

    (@s1r0n)


    Is it possible to turn on “text editing” in the tinymce editor. Currently, it does everything I need it to do, but it would be nice if I could edit the text once in a while. Sometimes tinymce messes up the html.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @s1r0n
    To do this you just have to add this code to your themes functions.php file:

    function change_editor_settings($settings) {
      if (is_super_admin()) {
        $settings['teeny'] = false;
        $settings['quicktags'] = true;
            return $settings;
      }
    }
    add_filter('asgarosforum_filter_editor_settings', 'change_editor_settings');
    Thread Starter s1r0n

    (@s1r0n)

    well after waiting a month to try this I did and it didn’t work. this doesn’t change anything on the tinymce screen

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text editor’ is closed to new replies.