Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1321225

    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!

    #1321582

    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

    #1321786

    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

    #1322023

    Hi,

    Thank you for the update.

    Do you see any errors after adding the filter? Did you copy the code from your email? Please try to copy it directly from the forum. Let us know if it helps.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.