Changing image size of categories on front page

Hi,

Sorry for the confusion.

Please try this PHP snippet (How to add custom code snippets - HivePress Help Center):

add_filter(
	'hivetheme/v1/image_sizes',
	function( $image_sizes ) {
		$image_sizes['portrait_small']['height'] = 400;
		$image_sizes['portrait_small']['width'] = 400;

		return $image_sizes;
	}
);

After you add this code snippet, you need to re-upload the image.

2 Likes