• Resolved nkronck

    (@nkronck)


    When using Elementor to edits a page content, even without a table in it, I get this error keeps popping up. It doesn’t seem to affect the page but is reoccurring on multiple pages. Not sure what it is referring to. Thanks for help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    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

    Thread Starter nkronck

    (@nkronck)

    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.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    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

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘“Failed to initiatilize plugin: tablepress_tinymce”’ is closed to new replies.