AI Verified

Name

Gutenberg - zakáže welcome okno

About

Zakáže uvítací okno Gutenbergu

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

suky-snippets

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: Not Specified

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

23/11/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Gutenberg - zakáže welcome okno

 
                    
1/* Zakáže uvítací okno Gutenbergu */
2 
3function disable_gutenberg_tips() {
4 $script = "
5jQuery(document).ready(function(){
6 var is_tip_visible = wp.data.select( 'core/nux' ).areTipsEnabled()
7 if (is_tip_visible) {
8 wp.data.dispatch( 'core/nux' ).disableTips();
9 }
10});
11 ";
12 wp_add_inline_script( 'wp-blocks', $script );
13}
14add_action( 'enqueue_block_editor_assets', 'disable_gutenberg_tips' );

0

Related Snippets

Please see some snippets below related to this snippet..

General

AI Verified

0

Yabe Webfont - Proxy Google Fonts CDN

Added: 10 months ago

Last Updated: 10 months ago

Some countries block Google Fonts CDN. If you are in one of those countries, you can use the hosted Wakufont server to proxy the Google Fonts file URL. This feature is available on all pricing plans....

General

Unverified

0

Simple CSV Status Logger

Added: 8 months ago

Last Updated: 8 months ago

General

AI Verified

2

Create [year] Shortcode to Display Current Year

Added: 1 year ago

Last Updated: 5 days ago

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

General

AI Verified

1

Disable admin bar

Added: 9 months ago

Last Updated: 2 months ago

Turns off the WordPress admin bar for everyone except administrators. This is a sample snippet. Feel free to use it, edit it, or remove it.

General

AI Verified

0

Make upload filenames lowercase

Added: 9 months ago

Last Updated: 9 months ago

Makes sure that image and file uploads have lowercase filenames. This is a sample snippet. Feel free to use it, edit it, or remove it.

General

AI Verified

0

Allow smilies

Added: 9 months ago

Last Updated: 9 months ago

Allows smiley conversion in obscure places. This is a sample snippet. Feel free to use it, edit it, or remove it.