Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created January 21, 2018 18:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/a6d9d71218832f0f0260885f9f5acd4f to your computer and use it in GitHub Desktop.
Save generatepress/a6d9d71218832f0f0260885f9f5acd4f to your computer and use it in GitHub Desktop.
Remove the header on all single product pages.
add_action( 'wp', 'tu_remove_header_from_products' );
function tu_remove_header_from_products() {
if ( is_singular( 'product' ) ) {
remove_action( 'generate_header', 'generate_construct_header' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment