'use client' import { IntegrationGuide } from '@/components/IntegrationGuide' import { CodeBlock } from '@/components/CodeBlock' import { getIntegration } from '@/lib/integrations' import { notFound } from 'next/navigation' export default function ShopifyIntegrationPage() { const integration = getIntegration('shopify') if (!integration) return notFound() return (

Add privacy-first analytics to your Shopify store in minutes using the theme editor — no app installation required.


Method 1: Theme Settings (Easiest)

  1. In your Shopify admin, go to Online Store > Themes.
  2. Click Actions > Edit code on your active theme.
  3. Open layout/theme.liquid.
  4. Paste the following snippet just before the closing </head> tag:
{` `}

Method 2: Custom Pixels (Shopify Plus)

If you are on Shopify Plus, you can also use Customer Events > Custom Pixels to add the script. Go to Settings > Customer events and create a new custom pixel.

Important Notes

) }