Skip to main content
Wix guide

INP (Interaction to Next Paint) for Wix Stores

By ยท Updated ยท 6 min read

How INP Works Differently on Wix Stores

Wix is a closed platform: store owners cannot edit raw HTML, modify server configurations, or deploy custom service workers. This fundamentally changes how INP optimization works compared to open platforms like WooCommerce or custom Shopify themes. On Wix, the rendering pipeline, JavaScript bundling, and third-party script loading are controlled by Wix's infrastructure, not the merchant.

That constraint cuts both ways. Wix's engineering team has optimized core platform interactions โ€” add-to-cart buttons, navigation menus, and checkout flows โ€” at the infrastructure level. Merchants inherit those improvements automatically through platform updates. The INP problem on Wix stores almost always originates from installed apps, embedded custom code, or heavy Wix Blocks components layered on top of that baseline.

Wix Tools for Measuring INP

Wix provides a native Speed Dashboard inside the site editor. It surfaces Core Web Vitals data โ€” including INP โ€” pulled from the Chrome User Experience Report (CrUX), the same field data Google uses for ranking signals. Merchants can view INP scores segmented by mobile and desktop without leaving the Wix dashboard, which removes the friction of setting up external analytics for a first read.

For deeper diagnostics, PageSpeed Insights accepts any public Wix store URL and returns both lab data (Lighthouse) and field data (CrUX). The Lighthouse trace identifies long tasks on the main thread and flags which scripts are blocking interaction responsiveness. Chrome DevTools' Performance panel works on Wix stores in exactly the same way as any other site โ€” record an interaction, inspect the main thread timeline, and locate the task responsible for the INP delay.

Wix does not expose server-side logging or build pipelines, so script profiling stops at the browser boundary. If a Wix app loads a script from its own CDN, the merchant can see the script's impact in DevTools but cannot modify how or when the app loads it.

The App Ecosystem Is the Primary INP Risk

The Wix App Market lists hundreds of third-party apps โ€” live chat widgets, review carousels, loyalty programs, pop-up builders, and email capture tools. Each installed app injects JavaScript into every page load by default. A store running six to ten apps commonly accumulates enough main-thread work to push INP above the 200ms 'needs improvement' threshold, even when the Wix platform baseline is healthy.

The relationship between app count and INP is direct: every app that registers event listeners on the document or window, or that polls for DOM changes, competes for main-thread time during user interactions. Review apps that re-render star ratings on scroll and chat widgets that initialize on every keystroke are frequent offenders identified in Lighthouse audits of Wix stores.

Audit installed apps quarterly. Uninstall apps that duplicate functionality or that are no longer actively used. Before installing a new app, test INP on a published duplicate of the store page with and without the app active โ€” Wix allows duplicate sites for exactly this kind of comparison testing.

Custom Code Blocks and Wix Velo: INP Pitfalls

Wix Velo (formerly Corvid) lets developers write JavaScript that runs in the browser via Wix's sandboxed environment. Velo code executes on page load and can attach event listeners to elements. Poorly written Velo handlers โ€” those that do synchronous DOM queries, trigger network requests inside click handlers, or run heavy loops on input events โ€” directly extend the event processing phase that INP measures.

Custom HTML embeds added through Wix's 'Embed a Widget' element bypass Velo entirely and inject arbitrary third-party scripts directly into the page. These embeds are the hardest INP source to control on Wix because they load synchronously in the order they appear in the DOM. Replacing synchronous embed scripts with Velo's wixWindow.openLightbox or lazy-loaded equivalents reduces their impact on initial interaction responsiveness.

For Velo event handlers, move any non-critical work โ€” analytics calls, badge updates, recommendation fetches โ€” into a setTimeout with a 0ms delay or use requestIdleCallback. This yields the main thread back to the browser immediately after the visual response, reducing INP without changing the perceived interaction behavior.

Platform Limitations Merchants Cannot Fully Control

Wix bundles its own JavaScript framework for site functionality. That bundle loads on every page and accounts for a baseline amount of main-thread parsing time. Merchants cannot split, tree-shake, or defer this bundle โ€” it is part of the platform contract. If Wix's own bundle contributes to long tasks, the only path to improvement is filing feedback through Wix's official channels or waiting for platform-level updates.

Wix's image and media handling, font loading, and CDN configuration are also fixed. Merchants cannot set custom Cache-Control headers, implement resource hints like modulepreload for specific scripts, or configure a custom CDN layer. These constraints mean that INP optimizations on Wix are narrower in scope than on headless or self-hosted platforms โ€” the ceiling is lower, but the floor is higher.

Actionable Steps to Improve INP on a Wix Store

Start with the Wix Speed Dashboard to establish a baseline INP score from real field data. Then open PageSpeed Insights and run the Lighthouse audit on the highest-traffic product page and the cart page. Note every third-party script flagged under 'Reduce JavaScript execution time' โ€” map each script back to a specific installed app or custom embed.

Uninstall or replace any app whose script appears in that list and that does not directly drive revenue. For remaining apps, check whether the app vendor offers a lightweight or 'lite' version. Some Wix App Market vendors publish performance-optimized versions of their widgets specifically in response to Core Web Vitals pressure.

For Velo code, audit all $w.onReady handlers and event listeners. Defer non-rendering work with setTimeout or requestIdleCallback. Test changes on a duplicate site before publishing. Re-measure INP after each change to isolate impact โ€” fixing one app at a time is more reliable than batching changes and losing the ability to attribute improvements.

Frequently asked questions

Can Wix store owners directly optimize JavaScript to fix INP?

Wix store owners cannot edit the platform's core JavaScript bundle or modify how Wix loads its own scripts. Optimization is limited to removing or configuring installed apps, rewriting Velo event handlers to defer non-critical work, and eliminating unnecessary custom HTML embeds. That scope covers the majority of INP problems found in real Wix store audits.

What INP score should a Wix store aim for?

Google defines INP below 200ms as 'good,' 200โ€“500ms as 'needs improvement,' and above 500ms as 'poor.' Wix stores with a lean app stack and minimal custom code routinely achieve sub-200ms INP. Stores with seven or more active apps frequently score in the 'needs improvement' range without deliberate optimization.

Does Wix's platform automatically improve INP over time?

Yes, Wix pushes infrastructure updates to all stores simultaneously, and those updates sometimes include Core Web Vitals improvements. Merchants do not need to deploy these changes. However, platform improvements only affect Wix's own code โ€” INP degradation caused by installed apps or custom Velo scripts remains the merchant's responsibility to address.

Which types of Wix apps cause the most INP problems?

Live chat widgets, pop-up and email capture tools, and review carousels are the most frequent INP offenders in Wix stores. These app categories register persistent event listeners, poll the DOM for changes, or initialize large JavaScript libraries on every page view. Each adds main-thread competition that extends the delay between a user interaction and the browser's next visible response.

Is INP a Google ranking factor for Wix stores?

INP replaced FID as the interaction metric in Google's Core Web Vitals assessment in March 2024. Core Web Vitals are a confirmed component of Google's page experience signals, which influence search ranking. A Wix store with a 'poor' INP score is eligible for the same ranking impact as any other site with poor Core Web Vitals performance.

MG
Written by

Matt is the founder of RunOctopus. He built All Angles Creatures from zero to page-1 rankings in reptile feeder insects in under 60 days using exactly this method โ€” turning a hard, entrenched niche into RunOctopus's proof store for programmatic SEO and AI search citation.

Connect on LinkedIn →

See what Otto would build for your store

Free architecture preview. No card required. Five minutes.

Generate Preview →