Hey
I would like to get the full images on my shop archive page. At the moment it loads a generated thumbnail (450×450) on some images. Is there a way to do this?
Kind regards
Michael Storm
Hey mstorm85,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_without_sidebar
image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Andy
Hello Andy
Thank for the reply but it did not work. Take a look at the third product on this page: http://designunivers.dk/noral/butik/
It is still 450×450 but the original image is 500×679
http://designunivers.dk/noral/wp-content/uploads/2017/02/allegro-stolpelampe-e2-udendoerslampe.jpg
I tried setting the size to 2000 in max height and 1400 in max width.
Any ideas?
Kind regards,
Michael
Hi,
as you can see in your source code you’re still using 450px width image: http://imgur.com/a/cI78v, so please use the plugin properly. You could also adjust it manually via this code inside Quick CSS field:
#top .thumbnail_container img {
width: 500px;
max-width: 500px;
}
Best regards,
Andy