Skip to content

Instantly share code, notes, and snippets.

@jainnidhi
Created June 18, 2015 08:45
Show Gist options
  • Save jainnidhi/925babb88f8fc9544d18 to your computer and use it in GitHub Desktop.
Save jainnidhi/925babb88f8fc9544d18 to your computer and use it in GitHub Desktop.
hide woocommerce page title
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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