How to Change the WooCommerce Shop Page Title (Easy)

PHOTO EMBED

Sun Apr 17 2022 18:33:08 GMT+0000 (Coordinated Universal Time)

Saved by @satinbest #php

add_filter( 'woocommerce_page_title', 'new_woocommerce_page_title');
 
function new_woocommerce_page_title( $page_title ) {
 
  if( $page_title == 'Shop' ) {
 
    return "New Shop Title";
 
  }
 
}
content_copyCOPY

change page shop title in wordpress

https://www.wpbeginner.com/wp-tutorials/how-to-change-the-woocommerce-shop-page-title/