add_filter( 'the_title', 'add_text_to_page_title' );
function add_text_to_page_title( $title ) {
if ( is_single() ) {
$title = 'Смотреть: '. $title;
}
return $title;
}
add_filter( 'the_title', 'add_text_to_page_title' );
function add_text_to_page_title( $title ) {
if( is_archive() || is_home() ) {
$title = 'Страница: '. $title;
}
return $title;
}
отвечает за это шаблон single-product/product-attributes.php, посмотрите его код
а еще есть такая функция
wc_display_product_attributes( $product );