Have a look at https://74systems.com/calendar/. Those images look awful. They are 300x300 when inspected but I don’t even have 300x300 images on my site. Everything is 6x9. Why would they be square here if they are 6x9 elsewhere in every other place?
Hi,
To change the image size, you can add the code below in your child theme’s functions.php file
function my_thumbnail_size() {
add_image_size( 'thumblist', 400, 300, true );
}
add_action( 'after_setup_theme', 'my_thumbnail_size', 11 );
Then install and run this plugin.
Hope that helps
Hey Paul,
thank you!! Didn’t work for the Modern Events Calendar. I used 320x160.
Hi @ericgreenspan,
Regretfully, the events thumbnail size for the Modern Events Calendar has always been 300x300px in List view. This is the default image size built in the plugin. To display untouched or cropped image, you will have to upload image size smaller to the settings.
Please also be aware that these sizes were hardcoded in the plugin. Displaying other sizes might require custom development which is beyond the scope of our support.
Thank you for your understanding.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.