How to disable lazy load on specific pages
-
Hi,
can anyone tell me that how to stop using it on specific pages?I’ve tried the following, but didn’t worked:
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( 'portfolio' ) || is_page( 'digital-goods' ) ) { $apply_lazyload = false; return $apply_lazyload; } else { $apply_lazyload = true; return $apply_lazyload; } }
Also can anyone confirm me whether this plugin is compatable with latest SPDY & HTTP/2 standards ? Because I’m using them.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to disable lazy load on specific pages’ is closed to new replies.