Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #58046
    Massimo
    Participant

    Hello.
    Is it possible to disable the title page only in certain pages?
    Thank you.

    #58167
    Sakin
    Keymaster

    @Massimo: There is no option like that. You can use CSS using page ID to hide title on those pages. For example, you can add the following css to hide the title for 3 pages with page ID 1735, 200 and 174. Similarly, you can do to your pages. You need to add this type of css in “Appearance => Customize => Theme Options => Custom CSS” box or in your child theme style.css

    .page-id-1735 .entry-header,
    .page-id-200 .entry-header,
    .page-id-174 .entry-header { 
        display: none; 
    }
    #58262
    Massimo
    Participant

    That’s all right!
    Thank you.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Page Title’ is closed to new replies.