Based on what Wazomba’s suggestion:
// hide upper title
.pp_woocommerce .ppt {
display: none !important;
}
// hide lower title
.pp_woocommerce .pp_description {
display: none !important;
}
This will work:
add_filter( ‘woocommerce_page_title’, ‘woo_shop_page_title’);
function woo_shop_page_title( $page_title ) {
if( ‘Shop’ == $page_title) {
return “My new title”;
}
}
Src: http://www.wpexplorer.com/best-woocommerce-snippets/ [#13]