Hi there,
Here’s the site: https://engagetogether.com/blog/
Featured images are no longer displaying in the post archive or on individual posts. Any idea what could be up?
Thanks!
Jared
Hi there,
Here’s the site: https://engagetogether.com/blog/
Featured images are no longer displaying in the post archive or on individual posts. Any idea what could be up?
Thanks!
Jared
Hi Jared,
The featured images are hidden because of this custom CSS:
div.entry-featured {
display: none;
}
Please find and remove it, it might be under Customizer > Additional CSS
.
Hope it helps
I can’t find it there… I did add this code quite a while back to remove the icon before the blog post title. Could this be part of the issue? Not sure why it would just start happening all of the sudden.
/*
// Remove icon before blog post title
*/
.x-full-width-active .entry-title:before, .x-content-sidebar-active .entry-title:before {display: none;}
Hi There,
Would you mind providing us with login credentials(by clicking on the Secure Note button at the bottom) so we can take a closer look? To do this, you can make a post with the following info:
Thanks.
Sure. Provided up above.
Hi There,
Please follow this steps, on your admin dashboard navigate to Appearance > Customize then inside the customizer under the Additional CSS tab look for that CSS block below and remove it, then saved the customizer.
div.entry-featured{
display:none;
}
Clear your browser’s cache if the changes did not take effect immediately.
I did check your Theme Options > CSS and it’s all good.
Hope it helps,
Cheers!
Yeah, that did it. Thanks!
You are most welcome.
I actually discovered why that CSS was added by a colleague of mine… It was to remove the featured images to the /courses/ category. This category is actually part of the Learn Dash LMS plugin. Any idea how to remove featured images just for that category? I tried this with no luck:
.category-courses .entry-thumb {
display: none;
}
Hi There,
In that case, try adding the following CSS rule and it should work.
.post-type-archive-sfwd-courses .entry-featured {
display: none;
}
Hope that helps.
That did the trick on the archive, but not the individual paths (as learn dash calls them): https://engagetogether.com/courses/church-environment/
Hi again,
Please add the following code as well:
.single-sfwd-courses .entry-featured {
display: none;
}
Cheers!
Perfection. Thanks so much!
You’re welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.