Hallo, ich habe seit dem letzten Update Probleme die Bilder für einen neuen Portfolio Eintrag proportional hochzuladen. Ich benutze “simple image sizes” um die entsprechende Bildgröße einzustellen. Im Child Theme unter functions.php habe ich keine Bildgröße definiert und alle plugins die irgendwas mit Bildern zu tun haben, habe ich deaktiviert und auch den Cache danach gelöscht. Die Vorschaubilder stimmen so, nur wenn ich die Bilder anklicke um sie zu vergrößern, funktionieren die Bilder im Querformat, aber die Bilder im Hochformat werden oben und unten abgeschnitten. Ich hoffe ich habe mich verständlich ausgedrückt.
Herzliche Grüße!
Hey augenblende,
Thank you for the inquiry.
Are you trying to adjust the lightbox images used in the masonry element? If yes, then you can use this filter in the functions.php file to display the original image inside the lightbox instead of the masonry thumbnail.
add_filter("avf_alb_lightbox_image_size", function($size, $context) {
if($context = "avia_masonry") {
$size = "full";
}
return $size;
}, 10, 2);
The “large” thumbnail is used by default, which size can be adjusted in the Settings > Media panel.
Best regards,
Ismael
Hi, thanks for your quick reply.
The masonry thumbnails are correct, it is the picture that opens when I click on one of the preview pictures.
I tried to add the filter to functions.php, but unfortunately the website stopped working.
Best regards,
Lothar