Viewing 3 replies - 1 through 3 (of 3 total)
  • @severuscold You currently have the following css added to the page which is hiding your content.

    .hentry {
        display: none;
    }

    I’m not sure where this css has been added but you can check here: Appearance > Customize and then click on Additional CSS. If you see it there, then remove it. If you don’t see it there, then add the following:

    .hentry {
        display: block!!important;
    }

    Be sure to click save and publish after changing the custom css.

    • This reply was modified 2 years, 1 month ago by wlpdrpat.
    Thread Starter severuscold

    (@severuscold)

    Ok,

    Many thanks to your explanation, I actually ended up finding a way to keep hiding the hentry on that specific page only with this:

    .page-id-494 .hentry {
    display:none;
    }

    I followed both your solution and this one:
    https://www.hostinger.com/tutorials/how-to-hide-page-title-wordpress

    Took a lot of googling to find this specific solution to only hide the hentry on the main page only.

    Again, thank you alot @wlpdrpat !

    @severuscold Next time if you run into a css issue just ask. I could have given you that code very quickly – I just needed to understand what you were looking to do. Cheers.

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