Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter DrLightman

    (@drlightman)

    Ok I see you made available a filter, good. I’ve integrated this code in a plugin of mine, it seems to be working:

    function mystuff_a3_lazy_load_run_filter($value)
    {
        if (function_exists('is_transforming_instant_article') && is_transforming_instant_article()) {
            return false;
        }
        return $value;
    }
    add_filter('a3_lazy_load_run_filter', 'mystuff_a3_lazy_load_run_filter');
    • This reply was modified 8 years, 4 months ago by DrLightman.
    • This reply was modified 8 years, 4 months ago by DrLightman.

    Hello DrLightMan, did you put this in theme functions.php file?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Disable in Facebook Instant articles!’ is closed to new replies.