Disable lazyload on page template
-
Hi,
I have placed this code before content on a page template, but the lazyload files are still loading on that page (checked with gtmetrix).
Why is this code provided by plugin owner not disabling lazyload on that page?
Thanks.<?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 ) { $apply_lazyload = false; return $apply_lazyload; } ?>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Disable lazyload on page template’ is closed to new replies.