• I installed the plug-in a while ago, but then noticed that images on the home page stopped appearing.

    After a fresh WP install, I installed the a3 lazy plug-in again. It worked well and, after a while, the images on the home page disappeared again. If I disable the plug-in, they show up, and once I re-activate it, they disappear again.

    Any ideas?

    Than you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • aliyahmaliyah

    (@aliyahmaliyah)

    I have the same issue on a various pages and I haven’t found a solution short of disabling the plugin.

    Hello,

    I had this problem as well, the lazy load wasn’t compatible with my slider on my homepage. I read you can disable the lazy load on your homepage by inserting this code into your functions.php file. I just added it to the bottom of that php page and it works.

    <?php
    add_filter( ‘a3_lazy_load_run_filter’, ‘skip_a3_lazy_load_for_this_page’, 11 );
    function skip_a3_lazy_load_for_this_page( $apply_lazyload ) {
    if ( is_page(‘home’) ) {
    $apply_lazyload = false;
    }
    return $apply_lazyload;
    }

    Hi, I have the same problem, but only on the mobile version of the site. Any solutions other than disabling the plugin?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Images on home page stop appearing after using the a3 Lazy load plug-in’ is closed to new replies.