Created
June 6, 2015 02:30
-
-
Save sky4git/f43bac44f2cf17e5241f to your computer and use it in GitHub Desktop.
Hide Shop page title woocommerce
This file contains 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
add_filter( 'woocommerce_show_page_title' , 'woo_hide_page_title' ); | |
/** | |
* woo_hide_page_title | |
* | |
* Removes the "shop" title on the main shop page | |
* | |
* @access public | |
* @since 1.0 | |
* @return void | |
*/ | |
function woo_hide_page_title() { | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment