Hello @HiliproVA01, Store optimization is a regularly ongoing process that you cannot complete the process in one go; you need to apply the practices regularly. I have examined your store in Google Page Insights Report, and below is the result determined from it-
You can see that your performance score is not up to the standards. Speed is the key for the website to hold on to customers on site to increase sales.
LCP Issues
LCP is the main issue as it is too high for your site, and product images are causing the load delays.
Suggested Improvements
You have used WebP format, which is good,d but you need to apply some more advanced techniques -
Image Preloading
For load delays in images, it is always preferable to preload the image with fetchpriority high.
Like -
Don’t lazy-load the LCP image
Lazy loading is a good option for the images that do not need to be delayed, but if you apply this on LCP images, it causes load delay,s so do reverse the lazy loading to eager loading for LCP images.
Example -
![Hero Image]()
High Total Blocking Time
Your site TBT is high because the JavaScript and CSS are not optimized properly. That means the browser is not able to handle different input tasks with user interactions like mouse clicking, scrolling, etc.
Suggested Improvement
Optimize CSS Rendering
CSS rendering is a significant part of the main thread’s workload. Minimizing the number of CSS rules and simplifying the CSS code can speed up rendering.
Example -
Minimize JavaScript Execution
Long-running JavaScript tasks can block the main thread and delay rendering. Breaking these tasks into smaller tasks using requestIdleCallback or setTimeout can help.
Example -
function longTask() {
// Do some work
setTimeout(() => {
// Continue the work
}, 0);
}
Your store SEO score also needs some improvement to cross 90. As per the analysis, I found things you should keep in mind while preparing the store.
Crawlable Links - Search engines use href attributes on links to crawl websites. Ensure that the href attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered.
Descriptive Text - I found one link on your site not have the descriptive text, so remember to provide descriptive text for all the links you added.
Alternatively, if you do not want to go deep down into developer things, I recommend trying Website Speedy - a shopify app that optimizes the store automatically by optimizing essential core web vitals.