Archived topic
Front page returns white blank page
3 replies · Started by Omri on October 28, 2020
Hey guys,
My homepage (front page) is returning a blank white page.
Here are the actions I took so far:
- Deactivated all the plugins and refreshed the page, didn't help
- Changed PHP version, didn't help
- Changed the theme to 'Twenty Twenty' and the front page was showing just fine
This makes me believe it must be a theme issue and I'm not sure how to solve it.
Would appreciate your help
Thanks
Hi there,
you have this CSS added to your site:
body.page-id-292, .page-id-4801 .entry-meta {
display: none;
}
If you want to remove just the entry-meta on those two pages you need to use this:
body.page-id-292 .entry-meta, .page-id-4801 .entry-meta {
display: none;
}
Haa now I feel stupid. Thanks David, solved.
Easily done :) Glad to be of help!