Forum breadcrumbs – You are here:Asgaros Support ForumSupportLine break
Please or Register to create posts and topics.

Line break

Hello,

I need help how to make SHIFT+ENTER line break to be acted with only ENTER button?

Best Regards,

Hello daron4ever,

you can add the following code to your themes functions.php file to change this behavior:

add_filter('tiny_mce_before_init', 'my_switch_tinymce_p_br');
 
function my_switch_tinymce_p_br($settings) {
    $settings['forced_root_block'] = false;
    return $settings;
}

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

Hello,

It didn’t work.

Hello again,

in this case you should ask in the official WordPress support forums how to change this behavior because this is a WordPress core behavior which I cant change directly inside my plugin by default.

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!