Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created September 7, 2022 17:56
Show Gist options
  • Select an option

  • Save wpflames/8b7c7eaa2b61e526d08966465aead379 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/8b7c7eaa2b61e526d08966465aead379 to your computer and use it in GitHub Desktop.
Remove Genesis Admin Warnings
// =============================================================
// 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