Enis Posted February 24, 2021 Report Posted February 24, 2021 I saw a post that said you can do lazy loading by adding some line of code at www/delivery/asyncspc.php. But i don't know for sure that that is how is done. Can you show me how to do that. Quote
Stephanie Posted February 25, 2021 Report Posted February 25, 2021 (edited) You need to modify the delivery file you use (asyncspc.php or afr.php) Search for : $imageTag = "$clickTag<img src='".htmlspecialchars($imageUrl, ENT_QUOTES)."' width='$width' height='$height' alt='$alt' title='$alt' border='0'$imgStatus />$clickTagEnd"; change it to : $imageTag = "$clickTag<img src='".htmlspecialchars($imageUrl, ENT_QUOTES)."' width='$width' height='$height' loading='lazy' alt='$alt' title='$alt' border='0'$imgStatus />$clickTagEnd"; Edited February 25, 2021 by Stephanie nootkan and Tim Vereecke 2 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.