Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Last active December 30, 2021 21:43
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Genesis Blocks Pro - Hide License Notification on the Main Plugin Page
<?php
// Do NOT include the opening php tag.
// Hide Genesis Blocks Pro License Notification on the Main Plugin Page from Phil Johnston
function your_prefix_hide_gbpro_update_notice() {
?>
<style>
#genesis-page-builder-update{ display: none; }
</style>
<?php
}
add_action( 'admin_head', 'your_prefix_hide_gbpro_update_notice' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment