Disabling lazyload for certain image class is not working
-
Hi there,
it is a great plugin but I’m having some issue with this plugin. I don’t want the images in my shop page to be lazy loaded as it increases the overall height of each div after lazy load.You can checkout my shop page here: https://www.isaumya.com/digital-goods/
I’ve added the images class within the plugin setting so they do not get loaded via lazy load. But unfortunately it is not working and the images are still getting loaded via lazyload. As you can see.
I’ve also tried to put the below code in m y function.php based on your other reply on another thread but it didn’t stopped the lazy load on that page images either.
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('digital-goods') ) { $apply_lazyload = false; } return $apply_lazyload; }
So, I was hoping if anyone can help me out here. I really wanna use this plugin on my site but due to this problem I’m facing issue.
Also another thing I need to talk about is that I’ve added some images in my blog sidebar using normal img src and I saw that they are also not getting loaded via lazyload, but I want to load them via lazy load.
Can anyone help me out here?
- The topic ‘Disabling lazyload for certain image class is not working’ is closed to new replies.