Platform audit guides

Different platforms break in different ways. These guides cover the issues each one actually produces, what you can control, and where auditing effort pays off.

Last updated 2026-07-28

Does the platform change how you audit a site?

It changes what you look for and what you can act on, not the checks themselves. A crawler runs the same tests everywhere; what differs is which failures are likely, which are fixable, and which are simply how the platform works.

The practical consequence is that platform knowledge saves you time in triage. A duplicate-URL warning on Shopify is usually the product-in-collection URL pattern working as designed and needs a canonical, not a panic. The same warning on WordPress more often means archives, pagination or an attachment page are being indexed unnecessarily. Identical finding, different cause, different fix.

The other reason to know the platform is knowing when to stop. On hosted builders like Squarespace, some findings — generated markup, bundled scripts, image handling — are not yours to change, and effort spent on them is wasted. Knowing which category a finding falls into is most of the skill in reading an audit.

What does every platform get wrong in the same way?

Four things, regardless of stack: duplicate URLs without canonicals, pages that ship far more JavaScript and image weight than the content needs, headings chosen for their appearance rather than their structure, and templated pages too thin to be worth indexing.

Those four account for the majority of findings on a typical small-business site of any platform. They are also why an audit that reports only per-page scores is less useful than one that groups a finding by how many pages it affects — a template-level cause with one fix looks like fifty separate problems until you group it.

Frequently asked questions

Can I audit a site on any platform with the same tool?

Yes. Audra and other crawlers audit the rendered HTML, so the platform behind it is irrelevant to the checks — WordPress, Shopify, Webflow, Squarespace, a static site or a custom app all audit identically. What differs is the interpretation, which is what these guides cover.

Can I audit a site before it launches?

Yes, if you use a local tool. Audra drives the Chrome on your own computer, so staging domains, password-protected builds and localhost audit exactly like production. Cloud auditors and PageSpeed Insights cannot reach non-public URLs — see the Lighthouse comparison for why.

Related guides