Anonymous User 15030067
(@anonymized-15030067)
You’ll need to edit the page template to remove the breadcrumbs from being outputted (or use CSS to hide it, but I always recommend editing it from being shown vs. hiding it). You can do the same for your page title vs. using a plugin to hide it.
Can you provide the theme your using and the URL of the page in question?
yes!i have over this question, in css file,add “.page-title{position:relative;display:none;}”,then change “page.php” file,change
<?php
if ( is_single() || is_front_page() ){
the_title( ‘<h1 class=”page-title”><span>’, ‘</span></h1>’ );
}
to
<?php
if ( is_single() || is_front_page() ){
the_title( ‘<h1 class=”
posts
-title”><span>’, ‘</span></h1>’ );
}
back “style.css” file ,add post-title > span{position:relative;}
Anonymous User 15030067
(@anonymized-15030067)
Make sure to use the correct code tags to format any code posted. In order to help you I will need the theme name that you are using.
Anonymous User 15030067
(@anonymized-15030067)
To confirm, this is the theme you are talking about and you’d like to remove these breadcrumbs from appearing as well as the page titles?
If yes, I can create a child theme for you with those small modifications for your install.