• Hello everyone
    I would like to know how to remove the default title display on page.
    It appears by default even if i don’t want to put it.
    Thanks for your help !

Viewing 5 replies - 1 through 5 (of 5 total)
  • .

    (@techievous)

    Do you mean Site Title by “title”? If so, then this should work:

    #site-title {
         display: none;
    }
    Theme Author Silkalns

    (@silkalns)

    Add this code to Theme Options – Other – Custom CSS. It will hide titles from all pages but will leave them in place for all Posts.

    .page .entry-title {
        display: none;
    }
    Thread Starter melka34

    (@melka34)

    it works perfectly
    thanks !

    Thread Starter melka34

    (@melka34)

    Edit :/
    there is a problem with using this method…
    When you are using searching method. the title no longuer appear when pages are returned. So the user can’t click on the page.
    Do you think it’s possible to change page.php to remove the automatic title display fonction instead ?
    thanks

    Theme Author Silkalns

    (@silkalns)

    Then replace previously mentioned code with this one:

    .page .entry-title {
        display: none;
    }
    .search .page .entry-title {
        display: block;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove display title on page’ is closed to new replies.