Can I remove the featured images from all the post body in a specific category?

Can I remove the featured images from all the post body in a specific category?

Hi Tim,

Thank you for writing in, please add this to Theme Options > CSS

article.category-cool .entry-featured {
	display: none;
}

Replace the cool with the actual name of your category.

You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial

Hope it helps,
Cheers!

Thanks, but that also removed it from the blog page. I just want to remove it from inside the post.

Hi there,

Please update the code to:

.single-post article.category-cool .entry-featured {
	display: none;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.