How to change the thumbnail image size of the Gallery in single listing.

To change the image size of the thumbnail of the Gallery in the Single Listing page, please add this code to the functions.php of the child theme.

add_filter('wiloke-listing-tools/listing-card/gallery-size',function(){
	return 'medium';
});

The ‘medium’ here is the image size of the thumbnail, default is 300×300, you can change the ‘medium’ to another image size.

Leave A Comment?