• Resolved cjuniosl

    (@cjuniosl)


    I want to disable WP-Statistics Shortcodes button in tinymce editor. Is there any option or code to do this?

Viewing 1 replies (of 1 total)
  • Plugin Author Mostafa Soufi

    (@mostafas1990)

    Hello,

    Use this filter in your functions.php on your theme to disable the WP Statistics TinyMCE button

    add_filter('mce_external_plugins', function ($plugin_array) {
        unset($plugin_array['wp_statistic_tc_button']);
    
        return $plugin_array;
    }, 99);
Viewing 1 replies (of 1 total)

The topic ‘Disable button in tinymce’ is closed to new replies.