1. add_filter('woocommerce_page_title','ssm_woo_title', 15);
  2. function ssm_woo_title( $page_title ){
  3. if(is_post_type_archive('product'))
  4.     return '<span>Shop</span>';
  5.     else
  6.         return $page_title;
  7. }