Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active June 23, 2022 07:40
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 braddalton/d6f66a5e59cf6b652810d71464242ef7 to your computer and use it in GitHub Desktop.
Save braddalton/d6f66a5e59cf6b652810d71464242ef7 to your computer and use it in GitHub Desktop.
Remove WooCommerce Product Admin Header https://wpsites.net/?p=110512
add_action( 'admin_init', 'remove_setup_header' );
function remove_setup_header() {
echo '<style>#wpadminbar + #wpbody { margin-top:0; }</style>';
}
remove_action( 'in_admin_header', array( 'Automattic\WooCommerce\Internal\Admin\Loader', 'embed_page_header' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment