Skip to content

Instantly share code, notes, and snippets.

@chrisegg
Created September 6, 2021 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisegg/fcf1a86c5a13e81d2a4cd82bec82149c to your computer and use it in GitHub Desktop.
Save chrisegg/fcf1a86c5a13e81d2a4cd82bec82149c to your computer and use it in GitHub Desktop.
Hide the Gravity Forms brand header in the WP Admin that was added in v2.5.
<?php
//Copy everything below this point
add_action( 'admin_head', function () { ?>
<style>
header.gform-settings-header .gform-settings__wrapper {
/* this will hide the whole thing, including image */
display: none;
}
</style>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment