SEO, AdWords, affiliates, advertising, and promotions
Hello everyone,
I'm trying to find a way to exclude specific product data from being sent through Meta Pixel. We have a range of products that shouldn't appear in our analytics, yet they still show up. Here's what we've done so far:
Despite these measures, whenever orders for these products are created through the Shopify Admin (manually), the product data seems to still get tracked by the Meta Pixel.
Is there a way to ensure these products are completely excluded from being tracked by the Meta Pixel? Any guidance or insights would be greatly appreciated!
Solved! Go to the solution
This is an accepted solution.
I solved the issue by checking every catalog in Facebook app, Events Manager and Business account. There was a difference between them
Hi Therealnemo,
Thanks for your query.
If you use Facebook and Instagram app then you have nothing much to do.
If you configure the meta pixel then you can exclude that product from being tracked by exception trigger.
Feel free to ask if you have any questions.
Thanks
Hi @TheRealNemo
I completely understand your frustration—sometimes no matter how many steps you take, unwanted product data still finds its way into analytics. Let’s figure this out together. Here's what you can do to stop specific product data from being sent to your Meta Pixel:
Meta Pixel can be customized by using tags or conditional logic to exclude specific products. You’ll need a developer or someone familiar with coding to help with this:
Add conditional logic to filter out the products. For example, use something like this in Liquid:
{% unless product.tags contains 'exclude_from_pixel' %}
<!-- Meta Pixel tracking code -->
{% endunless %}
When orders are created manually in Shopify Admin, it’s likely they bypass your exclusion logic. To prevent this:
If you’re using Meta’s Events Manager, you can apply rules to exclude certain data directly:
Apps like Pixel Perfect or Trackify can provide more granular control over which products are tracked. These tools often allow you to exclude specific items directly through their settings without needing code changes.
For orders created in Shopify Admin:
Let me know if you’re stuck with any of these steps—I’m happy to guide you through. This process can take some fine-tuning, but it’s absolutely solvable.
If you need any other assistance, I am willing to help.
Best regards,
Daisy.
Can you expand on how to exclude manual orders? We're having an issue where any time our manual/draft orders are made, Meta is counting them as conversions when they aren't. Really need to get these excluded ASAP!
There are several ways, I would need to know the store setup and what really is the problem to create a solution. If you use the customer events Meta Pixel then the only way to do this is by using catalogs (without any complex custom tracking logic solutions or some apps).
Hello TheRealNemo,
I am also having the same issue. Can you expand on how to do this step by step. Thank you.
This is an accepted solution.
I solved the issue by checking every catalog in Facebook app, Events Manager and Business account. There was a difference between them
Hey there,
You can try another thing. You can edit the code to exclude those specific products (do this if you're manually adding the code to theme file) -
<script>
fbq('track', 'Purchase', {
content_ids: ["1234", "5678"], //remove the ids in this snippet
content_type: 'product',
value: 49.99,
currency: 'USD'
});
</script>
You can also use checkout additional scripts where you can stop the pixel code from tracking particular tags/IDs. Add this code snippet -
{% if product.id != 1234 %}
<script>
fbq('track', 'Purchase', {
content_ids: ["{{ product.id }}"],
content_type: 'product',
value: {{ total_price | money_without_currency }},
currency: '{{ currency }}'
});
</script>
{% endif %}
Note: Do check for any indentation errors
I hope this helps 🙂
Masoomi Saxena | Content Writer @ AdNabu
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- Try our Nabu for Google Shopping Feed App from Shopify App Store.
Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025