My previous post has a solution for fixing issues with the a3 Lazy Load plugin on WooCommerce archive images.
But if you use a Genesis theme, you may notice that the a3 Lazy Load plugin also has similar issues when lazy loading Genesis archive images.
Single post images are lazy loaded correctly. Images on Genesis archive pages are not.
Here’s the functions.php code to fix this issue:
add_filter('genesis_get_image', 'ehi_a3_lazy_load_genesis'); function ehi_a3_lazy_load_genesis($output) { return apply_filters('a3_lazy_load_images', $output, null); }
Leave a Reply