• I have an issue with post titles.
    They do not show in the post itself.
    I have tried different options through Elementor, Block Editor, Classic Editor. Nothing seem to work.
    Am I missing something? Shouldn’t they be visible by default?
    Thanks in advance.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello there,

    Viewing the source code of your site, I got this custom CSS code applied.

    
    .entry-title {
      display: none;
    }
    

    This hides the post’s title on single page. What’s the purpose of it? Probably I could suggest you with better code. To not execute this code on single post page, replace it with

    
    body:not(.single) .entry-title {
      display: none;
    }
    

    Regards,
    Kharis

Viewing 1 replies (of 1 total)
  • The topic ‘Post titles do not show’ is closed to new replies.