Change default image size on single listing page

For my specific use case of Listinghive, images are not very important, so I’d like to make them less prominent on my website. As part of that, I would like to make them smaller on the single listing page, as they currently take up a disproportionally large amount of space (for my use case).

I would like it so that no matter what the image size is that a user uploads, it’s always displayed as a small thumbnail, smaller even than the map (which, by the way, how do I make the map smaller, too?).

Alternatively, I would not mind just removing images from listings altogether. Is that possible?

Hi,

Please use this PHP snippet - Hide the images field in the listing form #hivepress #listings · GitHub
How to add custom code snippets - HivePress Help Center

And these CSS snippets:

.hp-listing--view-page .hp-listing__images {
	display: none;
}

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

Please note that it can require further customization.

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