• [ Moderator note: moved to Fixing WordPress. Please do not use Developing with WordPress for these topics. ]

    when i used plugin ‘hide title’,i found a single page’s title was hidden,but my Breadcrumbs also display ? that so terrible! who can help me.

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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?

    Thread Starter jaywordpress

    (@jaywordpress)

    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.

    Thread Starter jaywordpress

    (@jaywordpress)

    WP_store

    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.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Breadcrumbs page title hide title’ is closed to new replies.