Skip to content

Instantly share code, notes, and snippets.

@sky4git
Created June 6, 2015 02:30
Show Gist options
  • Save sky4git/f43bac44f2cf17e5241f to your computer and use it in GitHub Desktop.
Save sky4git/f43bac44f2cf17e5241f to your computer and use it in GitHub Desktop.
Hide Shop page title woocommerce
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