• Resolved macsuibhne

    (@macsuibhne)


    I’ve got a site using classic editor and the Advanced Editor Tools plugin. When I activated The Post Grid plugin a shortcode button appeared along with all the other buttons in the editor. How can I remove that button?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Habib

    (@habibjh)

    Hi @macsuibhne

    Can you prlease give me any screeshnot of the shortcode button that you wnat to remove?

    Are you talking about this button- https://prnt.sc/gk77f4dP1280? If yes, you can simply remove the button by the below code – Just insert the below code in you child theme’s functions.php or you can use Code Snippets plugin to insert the below code into your WordPress.

    add_filter( 'mce_external_plugins', function ( $plugin_array ) {
    unset( $plugin_array['rt_tpg_scg'] );
    return $plugin_array;
    }, 999 );

    Thank you for being us.

    Thread Starter macsuibhne

    (@macsuibhne)

    That’s what I needed. Thanks a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.