Created
September 7, 2022 17:56
-
-
Save wpflames/8b7c7eaa2b61e526d08966465aead379 to your computer and use it in GitHub Desktop.
Remove Genesis Admin Warnings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ============================================================= | |
| // Remove Genesis Admin Warnings | |
| // ============================================================= | |
| function remove_genesis_admin_warnings() { | |
| echo '<style> | |
| #genesis-page-builder-update, | |
| #genesis-custom-blocks-pro-update{ | |
| display: none; | |
| } | |
| </style>'; | |
| } | |
| add_action('admin_head', 'remove_genesis_admin_warnings'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment