Created
January 25, 2021 13:36
-
-
Save wpflames/274a1f1a0b365783d8c45d67d6dbf82b to your computer and use it in GitHub Desktop.
Hide Storefront Homepage Title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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