Hi,
thanks for your post, and sorry for the trouble.
The mentioned “tablepress_tinymce” plugin is part of TablePress’ integration into the “Visual” Editor of WordPress. However, when using Elementor, this is turned off by Elementor, leading to this error. To get rid of the warning, please try adding this to the end of your theme’s “functions.php” file:
add_action( 'admin_init', 'tp_remove_editor_buttons', 11 );
function tp_remove_editor_buttons() {
remove_action( "load-post.php", array( TablePress::$controller, 'add_editor_buttons' ) );
remove_action( "load-post-new.php", array( TablePress::$controller, 'add_editor_buttons' ) );
}
Regards,
Tobias
Thank you @tobiasbg , love the plugin! So this solution did remove the warning box but it still has a spinning wheel and greyed out Elementor “elements” window. I thought it may be Elementor but this was occuriring with the error message and someone else identified similar issues here: https://ww.wp.xz.cn/support/topic/elements-grayed-out-and-progress-wheel-is-turning-for-ever/
Thanks for your assistance.
Hi,
can you maybe check the JavaScript error log console in the browser, to see if there are any other JavaScript issues? I don’t think that this is caused by TablePress, after applying that code from above.
Regards,
Tobias