Forums
(@polarvortex)
10 years, 11 months ago
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; }
11 years ago
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: https://www.wpexplorer.com/best-woocommerce-snippets/ [#13]