Appearance
Dalton Pixel for Shopify
Dalton integrates natively with Shopify’s Custom Pixel API to track key ecommerce events.
This page explains how to install, connect, and manage the Dalton Pixel in Shopify.
Overview
Dalton automatically tracks the following Shopify events:
add_to_cartcheckout_startedcheckout_completed
These are captured directly from Shopify’s analytics layer for accurate and privacy-compliant reporting.
📘 Shopify Docs:
Installation
Step 1: Add the Dalton Pixel
In your Shopify admin:
- Go to Settings → Customer Events
- Click Add Custom Pixel
- Name it
Dalton Pixel - Paste the following script into the Custom Pixel Code editor:
javascript
// DALTON PIXEL SHOPIFY INSTALLATION
const customerId = {{customerId}} // Add your customer id here
let script = document.createElement('script');
script.setAttribute('id', 'dalton-pixel');
script.src = `https://cdn.getdalton.com/pixel/${customerId}.min.js?customer_id=${customerId}`;
document.head.appendChild(script);
window.dalton = window.dalton || {};
window.dalton.analytics = analytics;- Click Save
Step 2: Connect the Pixel
After creating the pixel, connect it to your store so it starts tracking events.
- In Settings → Customer Events, click Custom Pixels
- Under Disconnected pixels, find
Dalton Pixel - Click Connect
- Review Shopify’s Terms of Service confirmation and click Connect again
Step 3: Verify Installation
- Visit your Shopify store’s front end
- Open Developer Tools → Console
- Verify that the message
Dalton Pixel loadedappears - Add a product to the cart or complete a checkout
- Confirm that the events appear in your Dalton dashboard
Managing the Dalton Pixel
Disconnect the Pixel
If you want to pause event tracking:
- Go to Settings → Customer Events → Custom Pixels
- Click Disconnect next to
Dalton Pixel
Disconnecting stops tracking but keeps your pixel saved for later use.
Delete the Pixel
To remove the Dalton Pixel entirely:
- Go to Settings → Customer Events → Custom Pixels
- Click the
…button next toDalton Pixel - Select Delete, then confirm
⚠️ Deletion is permanent and cannot be undone.
Next Steps
After the Dalton Pixel is connected:
- Events will appear automatically in your Dalton Dashboard
- You can track conversions, engagement, and revenue lift
- GA4 and Dalton data can be combined for detailed performance analysis
For more context on general installation across all platforms, refer to the
Dalton Pixel Installation Guide.