Hide image in featured listings block

I currently have images hidden on listings and listing. I would like to add a block of featured listings to my home page. When I add the Listings block and choose “Display only featured listings” it shows the image placeholder, which is empty. Is there a snippett or something that I can add to hide this image as well. Thanks

Please try this CSS snippet

.home .hp-listings .hp-listing--featured .hp-listing__image{
	display: none !important;
}
1 Like

Worked great…thank you

Could I do the same code for the “Related Listings”? and just change “featured” to “related”?

Please try this CSS snippet

.hp-template--listing-view-page .hp-listings .hp-listing__image{
	display: none !important;
}
1 Like

Thank you yevhen

One more: how can I hide the listing image on the vendor page that shows vendors listings? Basically, I want to hide the listing image from everywhere on my site. Thanks

Please try this CSS snippet. It should hide listing images everywhere

.hp-listing__image, .hp-listing__images{
	display: none !important;
}

That worked, thank you.

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