Hi,
What plugin do you mean ? Its better to post in support plugin forum instead here without adding more details.
Images and editor works well for me in WP4
Plugin “CKEditor for WordPress” don’t work after update to WP 4.0!
Than open post for edit with enabled this plugin, debug console of Firefox has some error messages.
Visual mode:
TypeError: c.parent(…).offset(…) is undefined load-scripts.php:76
TypeError: i.getBody is not a function input.min.js:2
HTML mode:
TypeError: c.parent(…).offset(…) is undefined load-scripts.php:76
TypeError: k.get is not a function load-scripts.php:1071
Last error message increase than i try go to visual mode.
After admin-ajax.php process get new error message:
TypeError: e is undefined load-scripts.php:318
Dose not work after up date to WP 4.0!
i like using CKEditor had to disable it as it don’d show at the top of posting or page any more…
Please post any issues specifically related to a plugin in the plugin’s own support forum. You can find the one for CK Editor here: http://wordpress.org/support/plugin/ckeditor-for-wordpress
Thx, Senff! Work recipe for me:
Quick tip to fix it is to add this code in your functions.php theme file:
// Deregister editor-expand as it breaks CKEditor integration
function custom_deregister_editor_expand() {
wp_deregister_script('editor-expand');
}
add_action( 'admin_init', 'custom_deregister_editor_expand' );
Thank you so much, this helped!
TYVM Alex! this solved my pb also!