Okay
  Public Ticket #2696587
How to disable lazyload
Closed

Comments

  •  8
    vv_web started the conversation

    Hi, is it possible to disable LazyLoad for the whole theme? It's causing problems when delivering images in WebP.

    Thanks!

  • [deleted] replied

    Hi vv_web,

    To disable lazy loading on the Kalium theme please just add this PHP code:

    add_action( 'init', function() {
      kalium()->images->lazy_load = false;
    } );

    on your functions.php code.

    Have a great day!