Remove Gutenberg block editor’s tips
Are you tired of Gutenberg’s tips?
Do you want to get rid of it once and for all users automatically?
Here is a simple PHP snippet to automatically remove them for all users.
function advent_remove_gutenberg_tips() {
$script = "
jQuery(document).ready(function(){
var is_tip_visible = wp.data.select( 'core/nux' ).areTipsEnabled()
if (is_tip_visible) {
wp.data.dispatch( 'core/nux' ).disableTips();
}
});
";
wp_add_inline_script( 'wp-blocks', $script );
}
add_action( 'enqueue_block_editor_assets', 'advent_remove_gutenberg_tips' );
Of course, you can also go to editor’s options and uncheck “Tips” checkbox.
But since these settings are saved on the user’s browser using LocalStorage, the tips will come back every time you’ll use a different device to access the editor.
It’s also necessary to do that individually for each administrator of the website.