-
-
Save manidip/1682d64ace1afcb25860 to your computer and use it in GitHub Desktop.
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
<?php | |
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