• Resolved aubourget

    (@aubourget)


    Hello everyone,

    I do not know the precise date, but I realized 2 days ago that the post titles do not appear in my blog feed anymore. Only the featured image and a part of the content.

    I do not know if this is because of the new WordPress Version I just installed.

    Does anybody know how I could fix this ? Where can I see that the titles appear in the CSS and are not written as “hidden”?

    I used the plugin “Hide Page and Post Title” sine 2 days, but I deleted it, and it’s still the same.
    I also recently activated the plugin Relevanssi, but i tried to deactivate it and it still does not change anything.

    So I do not think it’s a plugin issue.

    Any help would be very appreciated.

    Thank you in advance.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author lyrathemes

    (@lyrathemes)

    @aubourget

    You have this CSS rule in your Custom CSS (or a plugin is injecting it) which is causing the title to disappear:

    .entry-title {
        line-height: 1.3;
        margin: 0 0 10px;
        letter-spacing: 1px;
        display: none;
    }

    Please check the Appearance > Customize > Additional CSS field or disable all plugins one by one to figure out what’s causing this.

    Thread Starter aubourget

    (@aubourget)

    Thank you @lyrathemes !
    That rule was not in my Custom CSS, and the disabling of all plugins did not work.
    So I just added this to my Custom CSS :

    .entry-title {
    line-height: 1.3;
    margin: 0 0 10px;
    letter-spacing: 1px;
    display: block;
    }

    And it worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post title don’t appear anymore in my blog feed’ is closed to new replies.