• Resolved wpbh

    (@wpbh)


    Hello,

    How can I disable Lazy loading of images for mobile devices such as cell phone, tablet …?

    Thanks for the answer!

Viewing 1 replies (of 1 total)
  • Plugin Support qtwrk

    (@qtwrk)

    Hi,

    please make sure you have enabled mobile cache , then add this code into wp-config.php

    if (stripos($_SERVER['HTTP_USER_AGENT'],"iPhone")!==false || stripos($_SERVER['HTTP_USER_AGENT'],"Android")!==false || stripos($_SERVER['HTTP_USER_AGENT'],"iPad")!==false ) 
    {
    define( 'LITESPEED_NO_LAZY', true ) ;
    }

    purge all.

    Best regards,

Viewing 1 replies (of 1 total)

The topic ‘Lazy Load’ is closed to new replies.