Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Last active December 30, 2021 21:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cre8tivediva/de7bbde6498b238a51ffed578bff0bdf to your computer and use it in GitHub Desktop.
Save cre8tivediva/de7bbde6498b238a51ffed578bff0bdf to your computer and use it in GitHub Desktop.
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