Created
December 13, 2018 18:06
-
-
Save chronosceptor/c0af31d115af30b1228fb0a787b0ec81 to your computer and use it in GitHub Desktop.
WooCommerce | Remove the title on the Shop page.php
This file contains hidden or 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 | |
| // 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