Hello There,
To resolve your issue, assuming that the child theme is set up, please add the following code in your child theme’s functions.php file
// Remove The Grid icon in the TinyMCE buttons
// =============================================================================
function myplugin_tinymce_buttons( $buttons ) {
//Remove the bold button
$remove = 'the_grid';
//Find the array key and then unset
if ( ( $key = array_search( $remove, $buttons ) ) !== false )
unset( $buttons[$key] );
return $buttons;
}
add_filter( 'mce_buttons', 'myplugin_tinymce_buttons', 999 );
// =============================================================================
We would loved to know if this has work for you. Thank you.