Hi , @davemdns
When a store slows down suddenly, the cause is almost always a recent change rather than the platform itself. Reviewing what was added or modified just before the slowdown usually leads to a quick resolution.
Most common causes of this :
Apps and integrations
Newly installed or updated apps often add JavaScript that loads on every page. Remove any apps that are no longer essential and test site speed after each removal to identify the impact.
Third-party scripts
Live chat, review widgets, tracking tools, and marketing scripts can block page rendering if they load too early. Non-critical scripts should load after the main content is visible.
Images and media
Large images or newly added videos can significantly affect load times, especially on mobile. Replace oversized images with optimized versions and avoid heavy media above the fold.
Theme or layout changes
Adding multiple sections, animations, or custom code increases DOM size and slows initial rendering. Remove unused sections and simplify above-the-fold layouts.
Mobile performance
Mobile devices are more sensitive to heavy scripts and large layouts. Reduce animations and enable lazy loading for images where possible.
< script >
document.querySelectorAll(‘img’).forEach(img => {
img.setAttribute(‘loading’, ‘lazy’);
});
< /script >
Alternatively, if you prefer not to diagnose sudden performance drops manually, a performance optimization app such as Website Speedy helps identify recently added scripts, large assets, and other changes that commonly impact page speed.
(Disclaimer: We are the developers of this app.)