One of the most common issues Shopify merchants face with paid advertising is inflated conversion counts in Facebook Ads Manager. If your dashboard reports 20 purchases but your store only received 10 orders, your Meta Pixel is likely double-firing (generating duplicate events).
Duplicate data ruins your ad optimization, wastes budget, and leads to incorrect ROAS reports. Here is why duplicate events happen and how to resolve them on Shopify.
Why Facebook Pixel events double-fire on Shopify
There are three main culprits behind duplicate tracking on Shopify checkouts:
- Double-Integration: You installed the pixel via Shopify's native Facebook app AND left a manual tracking script in your Additional Scripts settings.
- Page Refresh: Customers reloading the order confirmation page trigger the purchase script a second time.
- No Deduplication ID: If you use both browser-side tracking (Meta Pixel) and server-side tracking (Conversions API), you must pass a unique
event_idfor each transaction so Facebook can merge them.
How to identify and fix the issue
Step 1: Check for double installation
Verify that you do not have manual Facebook pixel codes in your theme files (theme.liquid) or inside Settings → Checkout → Additional Scripts. If you are using the native integration, remove all custom snippets.
Step 2: Block refresh-triggered fires
If you must use a custom script, ensure you store the transaction ID (order ID) in the browser's localStorage or cookies after the first load. Check against this store before triggering the pixel again.
Step 3: Implement event deduplication
When writing custom tracking code using Shopify Custom Pixels, use the unique event ID provided by the Web Pixels API payload as your Facebook event_id:
analytics.subscribe("checkout_completed", (event) => {
fbq('track', 'Purchase', {
value: event.data.checkout.totalPrice.amount,
currency: event.data.checkout.totalPrice.currencyCode
}, {
eventID: event.id // This maps to Meta's deduplication ID
});
});
event_id, drops duplicate browser event, reports 1 conversion.Automate and monitor your tracking with PixelWard
Preventing duplicate conversion reports shouldn't require manual cookie hacking. PixelWard automatically structures your Custom Pixels with built-in event deduplication. It maps your browser and server events cleanly and monitors for double-firing, giving you 100% accurate conversion data in Facebook Ads Manager.