• Is there a way to remove CKEditor? I am trying to clean up some of the scripts on my website. I don’t think I’ve ever seen CKEditor when going through the Badge/Achievement process so most likely it is not being used. Any help would be appreciated!

Viewing 1 replies (of 1 total)
  • comunicacionabierta

    (@comunicacionabierta)

    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
    //);

    Hope it helps!

Viewing 1 replies (of 1 total)

The topic ‘Remove CKEditor?’ is closed to new replies.