[ad_1]
@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 1 hour, 55 minutes ago by wlpdrpat.
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:
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 !
