• Resolved supernova42

    (@supernova42)


    In the Forum Options menu I tick the box so that members can only use the minimalistic editor. I do this as I find members can go over the top with regard to editing their own posts.

    However, when I (as administrator) create a forum post I would like access to the full editor (I use TinyMCE Advanced). In order to do this I have to go into the back end options menu each time and un-tick the box ‘Use Minimalistic Editor’, then enter my forum post and then activate the ‘Use Minimalistic Editor’ after I’ve finished. Is there a way where an administrator can always have access to the full editor?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello @supernova42

    Please add the following code to your themes functions.php file to solve this problem:

    function my_editor_settings($options) {
    	if (current_user_can('manage_options')) {
    		$options['teeny'] = false;
    	}
    
    	return $options;
    }
    add_filter('asgarosforum_filter_editor_settings', 'my_editor_settings');
    Thread Starter supernova42

    (@supernova42)

    Absolutely works a dream. I actually added the filter to my own plugin, rather than functions.php in my Themes, so that the file is not over written should the Theme be upgraded.

    Perhaps you should consider making this a selectable choice in your Options menu

    Many thanks and keep up the great work.

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