Lazy Load not working

Cold-Egg

Administrator
#2
It shows active from the page source. To verify from the browser, you can open the developer tool, tick the Disable cache, and set No throttling to Fast 3G, and you should see it works.
 
#3
It looks like that for my custom mu-plugin it isn't working. I created a code that loads related articles, it uses the Wordpress API.
Check the related articles after the content, lazy load doesn't seem to be working with their images, is there any workaround for this?
Also, is there any way to enable a fade-in jQuery effect?
 
#6
Wordpress . org staff is very unprofessional and immature, they've prejudiced my online business before with their irrational online monopoly rules, that's why I'm asking here. I was even thinking about asking a lawyer for advice regarding what they did.

But I've found out what it might be, even though I am not seeing any difference when the page is loading:

Code:
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.5s;
    -moz-transition: opacity .5s linear 0.5s;
    transition: opacity .5s linear 0.5s;
    opacity: 1;
}
I used this, but the transition is still not working.
 
Top