Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1143696

    Hello Guys !

    I’m looking for a solution to optimize the display of my website by delaying the loading of the images.
    I have a slider on my home with al lot of images and I would like to keep it in place without compromising the loading time which is bad for SEO and user experience.

    Thanks for your ideas !

    Have a beautiful day !

    Iceman

    #1144180

    No idea ?
    Maybe something like that: loading the first 3 pictures and the following while displaying the first 3 pictures …

    #1144184

    If you are using LayerSlider: It is already using lazy load and conditional script loading to optimise performance.

    Otherwise you could try on of the lazy load-plugin to further optimise the loading process of images: https://wordpress.org/plugins/search/lazyload/

    #1145610

    Hi,

    Thank you for the inquiry.

    Using a lazyload plugin as @hendlmann suggested should help, but it could cause problems with some elements. Jetpack’s lazy load option for example causes the layer slider images to not display at all, so you should look for a plugin that will work best in your setup.

    Best regards,
    Ismael

    #1145745

    Thank you Ismael, I already looked for Lazy Load plug ins but it’s bad for SEO. I prefer manual soltuion without plug in with <noscript> tag.

    
    I think about something like that: 
    
    <!-- Lazy loaded image: before -->
    <img data-src="photo.jpg" src="photoA.jpg" class="js-lazyload" src="data…" />
    <noscript>
        <img src="photoA.jpg"  alt="my photo A"… />
    </noscript>
    
    <!-- Lazy loaded image: after -->
    <img src="photoB.jpg" class="js-lazyload" … /
    <noscript>
        <img src="photoB.jpg"  alt="my photo B"… />
    </noscript>
    

    Does anyone got an idea ?

    • This reply was modified 5 years ago by ICEMAN.
    #1146355

    Hi,

    Thank you for the update.

    The noscript tag is used when browser scripts are disabled, so it won’t help in your case. You can, however, optimize the images used in the slider or optimize the site in some other ways. This short article should help.

    // https://kriesi.at/archives/4-key-wordpress-image-optimization-tips
    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    #1146476

    Hi Ismael, Thanks for sharing these links. I will read them.
    Have a beautiful day,
    Iceman

    #1146733

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #1146788

    You can close the topic,
    Thank you Ismael,
    Regards,
    Iceman

    #1147020

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Optimize the display of your sites by delaying the loading of the images’ is closed to new replies.