We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0863dc6 commit d89a971Copy full SHA for d89a971
companion.php
@@ -26,6 +26,9 @@
26
add_action( 'init', 'companion_add_jetpack_constants_option_page' );
27
28
function companion_admin_notices() {
29
+ if ( function_exists( 'is_gutenberg_page' ) && is_gutenberg_page() ) {
30
+ return;
31
+ }
32
$password_option_key = 'jurassic_ninja_admin_password';
33
$sysuser_option_key = 'jurassic_ninja_sysuser';
34
$admin_password = is_multisite() ? get_blog_option( 1, $password_option_key ) : get_option( $password_option_key );
0 commit comments