I found a workaround to simply hide it via CSS. Quick and dirty.
functions.php:
1 2 3 4 5 6 7 | // Add backend styles for Gutenberg. add_action('enqueue_block_editor_assets', 'gutenberg_editor_assets'); function gutenberg_editor_assets() { // Load the theme styles within Gutenberg. wp_enqueue_style('my-gutenberg-editor-styles', get_theme_file_uri('/assets/gutenberg-editor-styles.css'), FALSE); } |
assets/gutenberg-editor-styles.css:
1 2 3 | .components-popover.nux-dot-tip { display: none !important; } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.