Skip to content

Instantly share code, notes, and snippets.

@manidip
Forked from corsonr/gist:8703820
Last active August 29, 2015 14:25
Show Gist options
  • Save manidip/1682d64ace1afcb25860 to your computer and use it in GitHub Desktop.
Save manidip/1682d64ace1afcb25860 to your computer and use it in GitHub Desktop.
<?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