Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created January 25, 2021 13:36
Show Gist options
  • Select an option

  • Save wpflames/274a1f1a0b365783d8c45d67d6dbf82b to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/274a1f1a0b365783d8c45d67d6dbf82b to your computer and use it in GitHub Desktop.
Hide Storefront Homepage Title
<?php
// =========================================================================
// HIDE STOREFRONT HOMEPAGE TITLE
// =========================================================================
function storefront_remove_title_from_home_homepage_template() {
if ( is_front_page() ) remove_action( 'storefront_page', 'storefront_page_header', 10 );
}
add_action( 'wp', 'storefront_remove_title_from_home_homepage_template' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment