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

    (@asgaros)

    I will check it but I dont know if I will change this. It is the default behavior of the integrated WordPress editor and there is a high risk that modifications on it will change the look of existing posts.

    I will inform you in this thread when I have news for you.

    Thread Starter zorgan

    (@zorgan)

    thanks Asgaros!

    Liath

    (@liath)

    maybe it can help when you add the possibility to switch the Editor to “Text-Mode”

    for this you have to change the following

    File: ../wp-content/plugins/asgaros-forum/includes/forum.php
    Line: 42
    ToDo: Change to true

    'quicktags'     => false

    to fix the style of the Buttons in “Text-Mode, you have to change the width of them

    File: ../wp-content/plugins/asgaros-forum/skin/style.css
    Line: 35
    ToDo: Change to auto

    width: 100%;

    Plugin Author Asgaros

    (@asgaros)

    Liath posted a nice workaround for this. So you can activate this editor setting for your users if you want.

    I added an filter in the upcoming v1.0.9 release which allows you to change your editor settings in your themes functions.php file. You have to add this code to activate the quicktags functionality:

    function change_editor_settings($settings) {
    	$settings['quicktags'] = true;
    	return $settings;
    }
    
    add_filter('asgarosforum_filter_editor_settings', 'change_editor_settings');
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘when you hit enter it jumps down two lines instead of one’ is closed to new replies.