Skip to content

Instantly share code, notes, and snippets.

@chronosceptor
Created December 13, 2018 18:06
Show Gist options
  • Select an option

  • Save chronosceptor/c0af31d115af30b1228fb0a787b0ec81 to your computer and use it in GitHub Desktop.

Select an option

Save chronosceptor/c0af31d115af30b1228fb0a787b0ec81 to your computer and use it in GitHub Desktop.
WooCommerce | Remove the title on the Shop page.php
<?php
// this one
add_filter( 'woocommerce_show_page_title', '__return_false' );
// or this one
add_filter( 'woocommerce_show_page_title' , 'woo_hide_page_title' );
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