• Resolved jchbox

    (@jchbox)


    Hello,

    I get all the new version of wordpress, tinyMCE advanced and WP-table reloaded.

    The add table icon of wp-table don’t display when tinymce advanced is activated.

    I see 2 years olded post that mentionned that this is not possible to add the wp-table icon with the tinymce advanced plugin.

    I would like to know if now it’s possible and have the code to add to solve this problem

    Thanks for the plugin to the autor it’s very usefull !

    https://www.ads-software.com/extend/plugins/wp-table-reloaded/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post.

    Unfortunately, I don’t think that TinyMCE Advanced is supported yet, sorry.

    Remember however, that you can still use WP-Table Reloaded, as you can simply manually insert a table by adding the Shortcode, like

    [table id=123/ ]

    into the post/page. You can find the ID of the table on the “List of Tables” screen.

    Regards,
    Tobias

    Thread Starter jchbox

    (@jchbox)

    Thanks for the answer and for the plugin. good job !
    Regards,
    JC

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are welcome!

    Best wishes,
    Tobias

    Thread Starter jchbox

    (@jchbox)

    IN fact to see tinyMCE advanced buttons in editor i have to desactive wp-table … ??

    So the wp-table shortcode don’t work

    What can i use to have a simple table editor working with wp-table installed?

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    sorry that there’s still no real progress on this issue. ??

    One idea might be to deactivate the “Table” button that WP-Table Reloaded tries to add to the editor toolbar. This should make TinyMCE Advanced Editor working again.
    You’ll then just have to use the Shortcodes manually, but that’s no big deal.

    Please try adding this code to your theme’s “functions.php”:

    add_action( 'load-post.php', '_wp_table_reloaded_remove_editor_button' , 11 );
    add_action( 'load-post-new.php', '_wp_table_reloaded_remove_editor_button' , 11 );
    function _wp_table_reloaded_remove_editor_button() {
    	global $WP_Table_Reloaded_Admin;
    	remove_filter( 'mce_external_plugins', array( &$WP_Table_Reloaded_Admin, 'add_tinymce_plugin' ) );
    	remove_filter( 'mce_buttons', array( &$WP_Table_Reloaded_Admin, 'add_tinymce_button' ) );
    }

    Regards,
    Tobias

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Icon add table don't display with TinyMCE advanced’ is closed to new replies.