Reply To: Possible to default to Visual composer?


Home Forums Front End PM PRO Possible to default to Visual composer? Reply To: Possible to default to Visual composer?

#20243
Shamim Hasan
Keymaster

You can add following code in your theme’s (child theme’s if you are using) functions.php

add_filter( 'wp_default_editor', function( $r ){
	return 'tinymce';
});

remember if user change tab (visual/text) then that will be saved and will use that instead.