Viewing 30 results - 1,651 through 1,680 (of 10,095 total)
  • Author
    Search Results
  • #1214736

    Hi there again,

    First of all thanks for getting back to me this fast. If you have a blog, I would gladly share it :)

    After running some tests uploading a few pictures, it looks like your code (the initial one you provided) actually works. But for some reason the registered image sizes continue to appear on the Regenerate Thumbnails plugin. This is strange because the thumbnails corresponding to those sizes are not created (so your solution works great). I have tried a plugin called Simple Image Sizes, which allows you to remove registered sizes and when you do that with this plugin, then, these sizes won’t show up on the Regenerate Thumbnails plugin. One thing about this plugin is that when I click on regenerate it doesn’t remove the unregistered image sizes. However, there’s another plugin called Regenerate Thumbnails Advanced by Shortpixel that work.

    Anyway, your solution works fine when uploading new images and I’m very happy with that, so thanks for your support.

    Regarding the Trimage software, I have tried to download it for Mac following the instructions they provide on their web but I haven’t been able to do it. Any other alternatives that you know?

    Finally, there’s something else I wanted to ask you. I like your idea very much of being you who controls what image is served (instead of letting WordPress/Enfold choose). But there’s something that I’m not sure if could be improved in this process (just curious to know your thoughts about it). It’s the idea behind the srcset attribute but done deliberately by you. That is, optimize manually the images choosing the dimensions for different devices and then let the browser decide which one of the images that you have created serve. In other words, it would be implementing the srcset but in a controlled way, since it would be us who would decide which image sizes are correct.

    What do you think?

    Again, thanks so much for your help and for sharing your solution.

    Regards,

    #1214731

    Hello Ismael, Thank you – I already disabled animations on the Developer tab of the gallery.

    Checking the Enfold demo, I see that there’s a delay of the large image swap when rolling over the thumbnails, so it appears that this is a “feature” of the gallery object.

    What my client does not like is that delay as one large gallery image is swapped for another. While none of their clients may roll over the gallery thumbnails fast enough for there to simply be a white screen where the large image is, the goal is to speed up the swap between one large image and the next. I may not have been clear enough in my previous post about the issue.

    Is there some javascript or other css that causes the delay when one large image is swapped out for another? Would it be possible to modify in a child theme, so that the customization isn’t lost when the parent theme is updated? I am providing a link to a beta page below with only the gallery object.

    Hi Rikard:

    Please check the Private Content area for the link to the site. My apologies, the texts are in Portuguese, but I will try to drive you through ;-).

    I have addes a testing page for you, it is “KRIESI.AT TEST” right after the CONTATO (= Contacts) tab on the right in the Main Menu area. Get into it and scroll down a bit and right after the orange block, you will see on the left, a sidebar and the first widget is the “Enfold Latest Portfolio” element. I applied the codes I provided earlier in the Quick CSS area.

    This is actually the result I am looking for. BUT, if you now go to the BLOG page, you will see in the sidebar on the right, that the first widget, ÚLTIMOS POSTS (= Latest Posts) that is holding the “Enfold Latest Posts” element got affected too, I mean, date/time and thumbnail disapeared, and I do not want that.

    I would like this element to show the standar behaviour, with the Title, date/time and thumbnai, an JUST the “Enfold Latest Portfolio” element in the “KRIESI.AT TEST” page to be affected.

    Not sure if that is possible. Need your guidance.

    Thanks a lot.
    Cheers,
    Carlos

    Hi Yigit,
    Thanks for your reply.
    Double the values works but it would need to create new thumbnails for images as soon as I would like to change them.
    So I would prefer your first solution. It works but images are not correctly centered… How could I move them to the left?
    Thanks a lot!

    #1214630

    If that doesn’t do the trick try this (replace the relevant part):

    // Remove unneeded WP image sizes
    // updated 2020-01-13 because of additional image sizes
    function remove_default_image_sizes( $sizes) {
      unset( $sizes['thumbnail']); // 80px thumbnail
      unset( $sizes['small']); // 150px thumbnail - (Size based on Media setting)
      unset( $sizes['medium']); // 300px - (Size based on Media settings)
      unset( $sizes['medium_large']); // 768 - (Size based on Media settings)
      unset( $sizes['large']); // 1024
      unset( $sizes['extra_large']); // 1500
      unset( $sizes['1536x1536']);
      unset( $sizes['2048x2048']);
    // Add these 2 lines to remove the "new" WP default image sizes:
      remove_image_size( '1536x1536' );
      remove_image_size( '2048x2048' );
      return $sizes;
    }
    add_filter('intermediate_image_sizes_advanced', 'remove_default_image_sizes');

    By the way, in Settings > Media I have:
    Thumbnail size 80×80, crop checked
    Medium size 300×300
    Large size 1024×1024
    Check yours before doing the regenerate

    Oh yeah, and you only see the REAL sizes created in an actual image “Regenerate”, the General “Regenerate Thumbnails” setting shows the “default” registered sizes. Strange but true. Perhaps that is the only issue?
    After regenerating you can check this by doing a regenerate on an actual image, and of course by checking the actual files through FTP.

    • This reply was modified 5 years, 10 months ago by rob2701. Reason: Added remark about how to check for ACTUAL created thumbs
    #1214625

    AFTER checking the registered image sizes in WP Settings > Media are correct and AFTER setting the code in the child theme functions.php, do this:

    > Tools > Regenerate Thumbnails
    UNcheck: Skip regenerating existing correctly sized thumbnails (faster).
    CHECK: Delete thumbnail files for old unregistered sizes in order to free up server space. This may result in broken images in your posts and pages.

    You should have remaining:
    widget: 36×36 pixels (cropped to fit)
    This is used in the Dashboard for the portfolio items

    square: 180×180 pixels (cropped to fit)
    This is used on the frontend for the Previous/Next buttons to switch between Galleries

    Should work like this, does for me :-)

    • This reply was modified 5 years, 10 months ago by rob2701.
    #1214618

    Hi there,

    Thanks a lot for sharing this so fast. I have already tried tried it but it looks like the function to remove the default image sizes is not working for me, because when I check with the plugin Regenerate Thumbnails, those image sizes are already registered as you can see on the following screenshot:

    Image 2020-05-20 at 11.17.40 AM.png

    Any idea why this function is not working?

    Thanks a lot for your help, I really appreciate it.

    Also thanks a lot for your tips on the lossless compression, I will definitely try it.

    #1214526

    Hey rlhinirv57,

    Thank you for the inquiry.

    You can disable the animation from the element’s Advanced > Animation toggle. Set the Thumbnail fade in effect to the first option. And use this css code to display the actual size of the images and prevent them from being stretched.

    #top div .avia-gallery .avia-gallery-big-no-crop-thumb img {
        width: auto !important;
        height: auto !important;
    }

    Best regards,
    Ismael

    #1214506

    Hi dgvicario,

    There have been some changes since then to WP and some additions also by me for some things.
    Below is what I now have in my child theme’s functions.php regarding images and thumbnails:

    // set WordPress compression of image and thumbnails on upload and resize to 90 or 95
    // images are manually resized, compressed and optimized BEFORE upload already,
    // WP compression on images on resize/for thumbnails is standard = 82
    add_filter('jpeg_quality', function($arg){return 95;});
    
    // disable image scaling in WordPress 5.3 update (november 2019)
    // WP added feature that forces images to scale down if larger than threshold (2560px)
    // this interferes with chosen approach for retina images, i.e. serving up
    // double-size images with very high compression...
    add_filter( 'big_image_size_threshold', '__return_false' );
    
    // remove "responsive images" functionality in WP 4.4 and on from this theme
    add_filter('wp_get_attachment_image_attributes', function($attr) {
       if (isset($attr['sizes'])) unset($attr['sizes']);
       if (isset($attr['srcset'])) unset($attr['srcset']);
       return $attr;
    }, PHP_INT_MAX);
    add_filter('wp_calculate_image_sizes', '__return_false', PHP_INT_MAX);
    add_filter('wp_calculate_image_srcset', '__return_false', PHP_INT_MAX);
    remove_filter('the_content', 'wp_make_content_images_responsive');
    
    // Disable WordPress responsive srcset images
    add_filter('max_srcset_image_width', create_function('', 'return 1;'));
    
    // Disable theme thumbnail creation, will do image sizes manually
    // double-size thumbnails for retina screens
    // so we do not use the automatically resized and cropped thumnails from the theme
    // better to create them manually proper size and image compression
    // use Photoshop to set exact double size and quality between Q10 and Q40
    
    // Disable loads of Enfold & WP image sizes upon upload (to save space)
    add_action('init', 'remove_enfold_image_sizes');
    function remove_enfold_image_sizes() {
    // do NOT remove widget size, is used in backend portfolio items!
    // do NOT remove square size, is used in backend portfolio and previous/next buttons!
    //	remove_image_size('widget');
    //	remove_image_size('square');
    	remove_image_size('featured');
    	remove_image_size('featured_large');
    	remove_image_size('portfolio');
    	remove_image_size('portfolio_small');
    	remove_image_size('gallery');
    	remove_image_size('magazine');
    	remove_image_size('masonry');
    	remove_image_size('entry_without_sidebar');
    	remove_image_size('entry_with_sidebar');
    	remove_image_size('shop_thumbnail');
    	remove_image_size('shop_catalog');
    	remove_image_size('shop_single');
        remove_image_size('shop_gallery_thumbnail');
    }
    
    // Remove unneeded WP image sizes
    // updated 2020-01-13 because of additional image sizes
    function remove_default_image_sizes( $sizes) {
      unset( $sizes['thumbnail']); // 80px thumbnail
      unset( $sizes['small']); // 150px thumbnail - (Size based on Media setting)
      unset( $sizes['medium']); // 300px - (Size based on Media settings)
      unset( $sizes['medium_large']); // 768 - (Size based on Media settings)
      unset( $sizes['large']); // 1024
      unset( $sizes['extra_large']); // 1500
      unset( $sizes['1536x1536']);
      unset( $sizes['2048x2048']);
      return $sizes;
    }
    add_filter('intermediate_image_sizes_advanced', 'remove_default_image_sizes');
    
    // Lightbox links default to "large" size thumbnail, we link it to original image size
    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) {
       $link = wp_get_attachment_image_src($attachment->ID, "full");
       return $link;
    }
    
    // Disable scrolling of background when lightbox image opened
    add_action('wp_footer', 'custom_lightbox_script');
    function custom_lightbox_script(){
    ?>
    <script type="text/javascript">
    (function($) {
        function a() {
          $('body').on('click', '.lightbox-added', function() {
            if($('.mfp-bg').length >= 1) {
              $('html').css("overflow-y", "hidden");
            }
          });
    
          $('body').on('click', function() {
            setTimeout( function() {
              if($('.mfp-bg').length == 0) {
                $('html').css("overflow-y", "scroll");
              }
            },500);
          });
        }
      a();
    })(jQuery);
    </script>
    <?php
    }

    Hope that helps, try it out.
    Rob

    P.S.:
    Don’t forget to do a further (lossless) compression on the images you created in Photoshop BEFORE upload to WP, using for example File Optimizer on Windows or Trimage on Linux.

    P.S. #2
    Note that the sizes you set in WP Settings > Media Settings affect the sizes for Thumbnail size, Medium size and Large size – and set “Crop thumbnail to exact dimensions (normally thumbnails are proportional)” checkmark.

    • This reply was modified 5 years, 10 months ago by rob2701. Reason: Added remark about Media Settings in WP
    #1214447

    Hi there, I’ve been trying to implement your solution on my website. And I must say I really love it how you approach the problem of duplicated files on your server. That being said, when I use your code, only some thumbnails are removed. Basically those defined by Enfold. But the WordPress registered images sizes are still there. I’m using the Enfold child theme and I have copied your code on the functions.php file.

    Any ideas of why only the image sizes defined by Enfold are removed but not the ones defined by WordPress? Here’s a screenshot of the plugin Regenerate Thumbnails where you can see the currently registered thumbnails:

    Image 2020-05-19 at 10.37.49 PM.png

    And here’s the current code I’m using, just in case it helps:

    // remove “responsive images” functionality in WP 4.4 and higher
    add_filter(‘wp_get_attachment_image_attributes’, function($attr) {
    if (isset($attr[‘sizes’])) unset($attr[‘sizes’]);
    if (isset($attr[‘srcset’])) unset($attr[‘srcset’]);
    return $attr;
    }, PHP_INT_MAX);
    add_filter(‘wp_calculate_image_sizes’, ‘__return_false’, PHP_INT_MAX);
    add_filter(‘wp_calculate_image_srcset’, ‘__return_false’, PHP_INT_MAX);
    remove_filter(‘the_content’, ‘wp_make_content_images_responsive’);

    // Disable loads of Enfold & WP image sizes upon upload
    // do image sizes manually, double-size with high compression for retina screens
    // use Photoshop to set exact double size and quality between Q30 and Q40
    add_action(‘init’, ‘remove_enfold_image_sizes’);
    function remove_enfold_image_sizes() {
    // do NOT remove widget size, is used in backend portfolio items!
    // remove_image_size(‘widget’);
    remove_image_size(‘square’);
    remove_image_size(‘featured’);
    remove_image_size(‘featured_large’);
    remove_image_size(‘portfolio’);
    remove_image_size(‘portfolio_small’);
    remove_image_size(‘gallery’);
    remove_image_size(‘magazine’);
    remove_image_size(‘masonry’);
    remove_image_size(‘entry_without_sidebar’);
    remove_image_size(‘entry_with_sidebar’);
    remove_image_size(‘shop_thumbnail’);
    remove_image_size(‘shop_catalog’);
    remove_image_size(‘shop_single’);
    remove_image_size(‘shop_gallery_thumbnail’);
    remove_image_size(‘1536×1536’);
    remove_image_size(‘2048×2048’);
    remove_image_size(‘shop_single’);
    remove_image_size(‘extra_large’);
    //remove_image_size( ‘large’ );

    }
    // Remove unneeded WP image sizes
    add_filter( ‘intermediate_image_sizes_advanced’, ‘prefix_remove_default_images’ );
    // Remove default image sizes here.
    function prefix_remove_default_images( $sizes ) {
    // do NOT remove small and medium sizes, they are used in backend Media Library!
    // unset( $sizes[‘small’]); // 150px
    // unset( $sizes[‘medium’]); // 300px
    unset( $sizes[‘medium_large’]); // 768px
    //unset( $sizes[‘large’]); // 1030px

    return $sizes;
    }

    Thanks so much for your help.

    Here’s the code:
    [gallery type="rectangular" link="file" ids="1963,863,1964,858,903,1913,1914,1962,868,855,901,861,853,1315,924,864,1917,1479,900,904,1304,907,854,867,859,908,899,856,1343,1724,1831,870,860,902,865,862,869,857,909,906"]

    Although when I created/edit the gallery the type is set to thumbnail, this isn’t reflected in the code. If I manually change ‘rectangular’ to ‘thumbnail’ I get an incredibly thin gallery with really small images. None of the options now seems to adapt to the size of the main section of the page.

    My other galleries, using identical code (but different ids) initially load up too large and then resize themselves within a few seconds. eg http://www.kingsmeadfield.org.uk/gallery/riverside-gallery/

    I’m really confused. Any help would be much appreciated!

    sentinelchicken
    Participant

    Hi,
    I’ve had a website running Enfold for years and I upgraded to 4.7.4 today (as my host recently upgraded the server to PHP 7.2).

    Since the upgrade of Enfold, my galleries (thumbnail, tiled mosaic) are showing images far too big for the page. They used to resize to fit nicely in 3 columns in the main section of the page. When you click on each image, it then opens up to display a larger image in a media file.

    I’ve tried changing to a different type of gallery and changing the size but they are either wildly too small or wildly too big. There’s nothing that seems a sensible size. I’ve put the gallery back to the original thumbnail, tiled mosaic format. This doesn’t scream thumbnail to me.

    Can anyone help please? Might there have been an issue with the upload? Perhaps I’m missing a file?

    Extra incentive- this gallery is full of dogs – a dog lover’s paradise!
    Many thanks!

    #1214364
    LawElite
    Participant

    Thanks for all your great help so far. I have used some earlier support help to add IMAGES to my SEARCH PAGE. This has worked perfectly.

    https://mygrodd.com/?s=aquaman

    Now I am trying to figure out how to make sure it shows all my product images as SQUARES.

    Please note, that all my product images are uploaded as squares, and only squares. However, they are not all the same size, most are 500px, but others are larger. For any image larger than 500 or 550, it seems to crop them to a “wide ratio” (as seen if I view the source image) and then further crops that wide image down to a smaller square — so in the end it is a square image with the tops missing, when it could/should just be a resized and scaled down square.

    I have gone through support topcis:
    1. Edit Woocommerce shop image. Woocommerce default image size is no longer under Woo->Settings->Display. It is now under Customize->Woo. They were already set to 1:1 Thumbnails, but I changed it and changed it back, regen the thumbs and it still acts the same.

    2. In the actual code in loop-search.php I have changed this ‘entry_without_sidebar’ to full, square, etc. Nothing seems to change the search. $slider = get_the_post_thumbnail(get_the_ID(), ‘entry_without_sidebar’);

    3. Other support threads seem to mention changing this in Woo config.php if($layout == ‘fullsize’) $image_size = ‘entry_without_sidebar’;
    But since I am using the WordPress search, and not really Woocommerce, I am not sure where I should look to get my Search image to return NON-CROPPED. SQUARE results?

    THANKS!

    #1214136
    bobfurgo
    Participant

    hello, i’d like to add a simple image zoom effect on the blog element thumbnails when you hover over the image. Same as the standard zoom option you guys have for hovering over normal images. Thank you so much for your help

    cpereiracap
    Participant

    Hello Friends,
    In the site I am putting together, I created service portfolio items and assingned categories to them. In the Services page, I am showing all the portfolio items and I am using a left side bar. I created a specific sidebar with “Enfold Custom Widget Area” and dragged the “Enfold Latest Portfolio” to this widget. This is working fine.

    However, the Portfolio items that show up in the sidebar come with the Title, a second line with time/date info and the thumbnail on the right. I need to have just the Title showing up. I have found out that the code below loaded to Quick CSS will solve my problem:

    .sidebar span.news-time {
    display:none !important;
    }
    .sidebar span.news-thumb {
    display: none !important;
    }

    However, this wil laffect the “Enfold Latest Blog” widget that I have in the Blog page, and I do not like it. I need the Blog widget to work as it is and just the Portfolio widget to be affected.

    Is that possible ? Can you please provide me some guidance on how to do that ?

    Thanks a lot.
    Cheers,
    Carlos
    PS: I am in love with Enfold theme. You guys rock !!

    Cheers for your response Mike. Just to share the solution I accidentally found:
    On the woocommerce product pages the “product hover” option had to be set to “Hover effect on Overview Pages, Do you want to display a hover effect on overview pages and replace the default thumbnail with the first image of the gallery?” > NO HOVER EFFECT.
    I had the option “Yes – show first gallery image on hover”, which caused the problems. Actually this should not be causing problems and did not cause problems in the past. After all hover is only hover, not permanent… Either through woocommerce oe Enfold update this may have been causing the hover problem. Now, after changing each and every product page to “no hover effect”, the actual product image is showing and not the first gallery image.

    #1213894
    Solan
    Participant

    Hello, I’m building a Tab Section with a Catalogue inside each tab. I’d like the thumbnail size to be bigger than the default. Here’s the CSS I found and tried in my Quick CSS window but it hasn’t worked. Any help would be greatly appreciated. Thanks in advance.

    /* Thumbnail size */

    .av-catalogue-container.my-custom-catalogue .av-catalogue-list li .av-catalogue-image {
    width: 140px;
    height: 140px;
    }

    #1213837

    Hey wzshop,
    Sorry for the late reply, this javascript will move the onsale container inside the thumbnail container, unfortunately, there is no hook to use for that. Typically this solution works well, did it work for you?
    If you need an adjustment please link to the page we can see with this in action.

    Best regards,
    Mike

    JamesEisert
    Participant

    Hello.
    WooCommerce has a thumbnail for its category page.

    That thumbnail is being used as a banner when a category is chosen. It looks wrong and I wish to remove it.
    I contacted WooCommerce, and they say it is an Enfold problem.

    How can I get rid of the odd looking banner?

    Thank you

    #1213515

    Sure :-)

    1.png is the whole image

    2.png is how we see it at the top of the page. We want that top image to always show the whole image and not a generated thumbnail in a smaller size.

    Hope you can help!

    #1213478

    Hi Victoria
    I followed the thread with steps below
    1) Open the grid (in the popup) and select “Portfolio Grid Image Size”.
    2) Selected “Choose the Portfolio Grid image size manually (select thumbnail size)” and selected Magazine size 710X 375
    but it didn’t fix my problem. Still, some images show up in the squire frame, some in magazine size. There no consistency of the shapes of the picture/sizes from page to page.

    All I want clear and consistent pictures in full dress length to display my product.
    Any help?

    zizibe1
    Participant

    Hi,

    How can I create a gallery with four thumbnails above and one big image below?

    I’ve already tried this workaround: Two galleries, one above with four thumbnails and one below with one big image (please see the screenshot in the private content area).

    Problem: You can’t scroll directly through all five images in the lightbox by using the arrows. First, you have to open one gallery and then, you have to open the other. To avoid this, is there a way to connect the two galleries?

    Or do you see another solution to create a gallery with four thumbnails above one big image below?

    Best regards,

    zizibe1

    #1213351

    Hi Ismael,

    Thanks for your reply.

    I’ve already tried the different options in in the element’s Gallery Preview Image Size, but no one fulfills my requirements.

    When I choose Portfolio (495×400) e. g., the thumbnails all have the same size. But they should differ in size and should also keep the thin white gap between them as you see on the right side on the screenshot in the private content area.

    How can I achieve this layout?

    Best regards,

    zizibe1

    #1213286

    Hi,

    Thank you for the update.

    Try to increase the priority number in this line from 5 to 20.

    add_action( ‘woocommerce_product_thumbnails’, ‘woocommerce_output_product_data_tabs’, 5 );
    

    Best regards,
    Ismael

    #1213263

    Hi,

    Did you check the authorization details? We can’t access the site anymore.

    Try to adjust the default size of the shop_catalog thumbnail using the Simple Image Sizes plugin.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    #1213175

    Hi,

    Sorry for the delay. You can insert the title or caption like so:

    $html .= '<span class="wp-caption">'.esc_html(get_the_title($v)).'</span>';
    

    Place the code right below this line:

    $html .= '<img src="' . esc_url(get_the_post_thumbnail_url($v, 'thumbnail')) . '" alt="' . esc_html(get_the_title($v)) . '" />';
    

    Best regards,
    Ismael

    #1213167

    Hey zizibe1,

    Thank you for the inquiry.

    That is the expected layout because the thumbnails differ in sizes and aspect ratio, and the gallery doesn’t have a masonry-like script that automatically calculates the position of the items in the grid. If you want to align them horizontally or remove the gap between the rows, try to select a different thumbnail size in the element’s Gallery Preview Image Size settings. It is currently set to display the original source of the images or thumbnails.

    Best regards,
    Ismael

    #1213090
    rlhinirv57
    Participant

    Hello Enfold Team,
    First thank you for the overall great support!

    The topic I’m opening doesn’t seem to be fully resolved by some other threads. Whatever solution is implement it needs to not be overwritten when the client updates the parent theme.

    My client wants all animation removed from the thumbnails and the large image. Currently they seem to fade in even though I have disabled animations per: https://kriesi.at/support/topic/disable-gallery-animation-2/ and https://kriesi.at/documentation/enfold/animation/#disable-gallery-image-animation.

    2nd issue I’m having: in an effort to improve page load times, I resized the images for the gallery to 514 width by 666 height. However, now they are being stretched. This is probably related to the fact that the images are portrait orientation so they are taller than their width. Since the client intends to add up to 27 images to this gallery which will add more columns to the thumbnails, I don’t necessarily want to place it inside a narrower grid column. Do you have any suggestions for limiting the height of the gallery so that the entire large image can be seen on an average screen of 1366 x 768 or even a 1920 x 1080?

    Related to the 2nd issue, the client may upload images that have larger file dimensions but they will have the same portrait orientation, so the key issue is speed of loading the image when a thumbnail is rolled over. Now, the large image has a bit of a lag in loading. I am using WP Super Cache and have set it to preload mode, but images still don’t seem to be preloaded.

    Any suggestions for speeding up the loading of the large gallery image when a visitor hovers over a thumbnail is appreciated.

    #1212879
    Jun-E-Jay
    Participant

    Hi, I would like the total images to always show on the page below. Now it cuts it off (uses a generated thumbnail), so we miss a large bit of the images that are in portrait mode. Can we make this, so it always shows the whole image?

    #1212524

    Thank you for your reply.

    I set the video to always load and set a fallback picture. This works. However, I didn’t have to do that before. The thumbnail picture of the youtube video was displayed.

    I have a 2nd website which is set up the same way and there I don’t have the issue. The thumbnail of the video is displayed (see address below)

Viewing 30 results - 1,651 through 1,680 (of 10,095 total)