lazyload attributes saved into page content
-
after one of the recent updates on my site the cover image and the first project thumbnail on the homepage were not displayed when the page was loaded directly (in all browsers, on desktop and mobile). However, they did appear correctly when navigating to the homepage from a subpage (via AJAX navigation), and they also look fine in the Laytheme editor.
Claude found the problem and gave me a script to solve the problem for the moment.
<script>
document.addEventListener("DOMContentLoaded", function () {
document.querySelectorAll("img[data-src]").forEach(function (img) {
if (img.src.indexOf("data:image") === 0) {
img.removeAttribute("sizes");
img.src = img.getAttribute("data-src");
}
});
});
</script>But I guess it is a bug?
Thanks in advance for looking into this. -
hey, do you have a link?
-
@arminunruh
corporatefotografie.comrepair worked with
<script>
document.addEventListener("DOMContentLoaded", function () {
document.querySelectorAll("img[data-src]").forEach(function (img) {
if (img.src.indexOf("data:image") === 0) {
img.removeAttribute("sizes");
img.src = img.getAttribute("data-src");
}
});
});
</script>and with
@media (max-width: 600px){
.cover-region {
top: 0 !important;
}
}but I guess those were bugs?
-
thanks a lot!
i did try to fix this with the update i released yesterday.
you can try and see if that update fixed it for you.if you like you can also turn off updates in lay options -> disable updates
you can find the setting by searching for it in the search bar.
-
hey!

your website uses the mobile menubar.
which you can show/hide in customize -> mobile -> mobile menu bar -> hideThis bar is overlaying the top of your mobile website. Usually, this bar pushes the whole layout down which is correct

We also code custom websites or bespoke Lay features. Drop me a line at info@laytheme.com or check out my work at arminunruh.com.
Want to support my work? paypal.me/arminunruh
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it