Hide Featured Image from Standard Search but NOT from Product Search

Hello,

I found other posts that show how to hide images in search. But there are two types of search, the standard search, and the product search.

I want to hide featured images from the standard inline search, but show them on the product search.
I found this code in a prior forum post, but it hides images from all search types.

.search-results .entry-featured{
	display:none;
}

The images aren’t useful in a standard search, but are vital for the product search.
Please let me know if this is a solution you can provide.

Regards,

Jesse @ USAT

Hi Jesse,

Thank you for writing in, try this selector instead.

body:not(.archive).search-results .entry-featured {
	/*CSS rules here*/
}

More details about CSS :not selector

Hope it helps,
Cheers!

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