1. Auto-generated thumbnails: is it possible to reduce the resolution of the thumbnails? The auto-generated thumbnails load quite slowly on my website
After generating the thumbnail image, we store it using the WordPress media manager. During this process, WordPress will create several versions of the image (thumbnail, medium, large). But, we load the “large” image size on the thumbnail gallery to keep up the quality and this is creating the issue ??
Solution:
– Kindly open the following files,
/wp-content/plugins/all-in-one-video-gallery-premium/public/templates/video-thumbnail.php
/wp-content/plugins/all-in-one-video-gallery-premium/public/templates/video-thumbnail-image-left.php
– Find the line below,
$image = aiovg_get_image_url( $post_meta['image_id'][0], 'large', $post_meta['image'][0] );
– Change it as,
$image = aiovg_get_image_url( $post_meta['image_id'][0], 'thumbnail', $post_meta['image'][0] );
– Save the change and check now.
Hope this solved your issue!
I promise our next version will have this fix included.
2. How can I control the display size of the thumbnails on mobile devices? I would like to substantially reduce their size for better readability
Do you want to change the number of columns on the mobile devices?
Kindly try adding the following CSS code under “Appearance => Customize => Additional CSS” from your WordPress Admin Dashboard,
@media only screen and (max-width: 480px) {
.aiovg-col { width: 50% !important; }
}
Hope this solved your issue!
Kindly correct me If I have misunderstood your question.