Not perfect, but in my case worked …
1 – In page.php i eliminated the word ‘page’
<? php get_template_part ( ‘content’ , ‘page‘ ); ? >
2 – In content.php i change the link for the simple title .
< ? php echo ‘ <a href = ” ‘ . get_permalink ( ) . ‘ ” title = ” ‘ . esc_attr ( sprintf ( __ ( ‘ Permalink to% s’, ‘ lan- thinkupthemes ‘ ) ,
the_title_attribute ( ‘echo = 0’ ) ) ) . ‘ ” >’ Get_the_title () ‘ ‘ ; . . ? >
for this < ? php echo get_the_title ( ); ? >
3 – Used this post for hide the problem
https://ww.wp.xz.cn/support/topic/remove-product-categories-archive-from-category-page-titles?replies=6
In my case
style.css
# intro.option1 .page -title {
line-height : 1;
text-transform : uppercase ;
margin: 0px ;
display: none;
————————————
Sorry my english.