Hi..
As you can see in my video that there is no CKEditor in wplms. My test setup have all the wplms recommended plugins only.
So it can only come from a third party plugin because if it was coming from wplms theme or any of its plugins then I could see it on my test setup also.
Solved:
searched all files with "sublime" text editor, with word "ckeditor" showed that it was part of the BadgeOS plugin, and it caused the problem.
Found solution and it worked for me. Source of solution: https://wordpress.org/support/topic/remove-ckeditor/
Hey! I found a way right now but I don´t know if it will break anything else.
Go to the archive badgeos.php and put these lines as comments (288 to 297). So this:
wp_enqueue_script(
‘ck_editor_cdn’,
(‘https://cdn.ckeditor.com/4.5.3/standard/ckeditor.js’), false, null, false
);
wp_enqueue_script(
‘custom_script’,
plugins_url( ‘/js/ckeditor.js’ , __FILE__ ),
false,null,true
);
Just add two line / in front:
//wp_enqueue_script(
// ‘ck_editor_cdn’,
//(‘https://cdn.ckeditor.com/4.5.3/standard/ckeditor.js’), false, null, false
//);
//wp_enqueue_script(
// ‘custom_script’,
//plugins_url( ‘/js/ckeditor.js’ , __FILE__ ),
//false,null,true
//);