Retargeting pixel challenges and solutions
Retargeting pixels track visitors, but ad blockers (AdBlock, uBlock Origin) and ITP disable browser pixels — up to 30% of events are lost. In one e‑commerce store, losses reached 35% of the audience. Implementing Server-Side Conversions API fully restored reach. Our remarketing pixel installation covers all major platforms, including Meta Pixel, VK Pixel, Google Ads remarketing, VK, TikTok, Yandex Audiences. We configure standard events (ViewContent, AddToCart, Purchase) and integrate server-side data sending. This remarketing setup ensures full audience coverage and accurate data for ad optimization. Server-side retargeting is 2 times better than browser-only retargeting in reducing CPA, with a typical 25% CPA reduction after integration. Pixel installation is necessary if you run retargeting campaigns on any platform. Without them, ad algorithms don't receive user action data — audiences aren't collected and bids aren't optimized. It's especially critical for projects with high mobile traffic share (iOS ITP) and users with ad blockers. If you have a significant monthly ad spend, pixel setup pays back quickly via CPA reduction.
Our remarketing pixel installation solves:
- Audience loss due to ad blockers. Browser pixels don't fire for users with AdBlock or on iOS with ITP. Server-Side Conversions API sends data from the server — reach is restored. In one project, losses were 35% — after enabling the server API, the audience returned fully.
- Incomplete conversion data. Without standard events, ad algorithms don't optimize. We configure dataLayer and GTM triggers to pass parameters. As a result, ad campaigns started delivering 20% more conversions with the same budget.
- Pixel conflicts. Through GTM, we synchronize all tags and eliminate double firing. This is especially important when using multiple platforms simultaneously.
Choosing the right pixel platform
Meta, VK, or Google?
| Platform | Characteristics | Events |
|---|---|---|
| Meta Pixel | B2C, broad audience | PageView, ViewContent, AddToCart, Purchase, Lead |
| VK Pixel | Leader in Russia | PageView, add_to_cart, purchase, view_product |
| Google Ads remarketing | Search and YouTube, transactions | page_view, add_to_cart, purchase, conversion |
| Yandex Audiences | Integration with Metrica | reachGoal with goals |
| TikTok Pixel | Youth, viral content | ViewContent, AddToCart, Purchase |
Advanced server-side tracking
Browser pixels lose up to 30% of events due to ad blockers and browser restrictions. Server-Side Conversions API sends data directly from the server, bypassing these obstacles. This improves conversion tracking accuracy by 1.5x compared to browser-only pixels. We enable server-side sending for Meta, Google Ads, and Yandex Audiences. Saved ad budget can reach 30% due to more precise targeting. Our pixel integration is 2 times faster than manual setup, with setup starting at $500 and potential monthly savings of up to $2,000. On average, clients see a 25% reduction in CPA within 30 days. Over 5 years of experience and 100+ successful integrations ensure reliable execution.
Implementation via Google Tag Manager
GTM simplifies pixel management: all tags in one place, versioning, preview. We create a unified dataLayer that passes events to all platforms. Easy manage remarketing events through GTM. Example of basic setup:
<!-- GTM Container -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-XXXXXXX');</script>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-XXXXXXX"
height="0" width="0" style="display:none;visibility:hidden" title="GTM"></iframe></noscript>
Sample code for popular platforms
Meta Pixel
<!-- Meta Pixel Base -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', 'YOUR_PIXEL_ID');
fbq('track', 'PageView');
</script>
VK Pixel
<!-- VK Pixel Base -->
<script type="text/javascript">
!function(){var t=document.createElement("script");
t.type="text/javascript",t.async=!0,t.src='https://vk.com/js/api/openapi.js?169',
t.onload=function(){VK.Retargeting.Init("VK-RTRG-XXXXXX-XXXXX"),VK.Retargeting.Hit()},
document.head.appendChild(t)}();
</script>
Yandex.Metrica and Audiences
<!-- Yandex.Metrica counter -->
<script>
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();k=e.createElement(t);a=e.getElementsByTagName(t)[0];
k.async=1;k.src=r;a.parentNode.insertBefore(k,a)})(
window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(COUNTER_ID, "init", { clickmap: true, trackLinks: true, accurateTrackBounce: true });
</script>
Server-Side Conversions API in PHP
$response = Http::withHeaders([
'Authorization' => 'Bearer ' . config('meta.access_token'),
])->post("https://graph.facebook.com/v18.0/{$pixelId}/events", [
'data' => [[
'event_name' => 'Purchase',
'event_time' => time(),
'action_source' => 'website',
'user_data' => [
'em' => hash('sha256', strtolower(trim($user->email))),
'ph' => hash('sha256', preg_replace('/\D/', '', $user->phone)),
'client_ip_address' => $request->ip(),
'client_user_agent' => $request->userAgent(),
],
'custom_data' => [
'value' => $order->total,
'currency' => 'RUB',
'order_id' => (string) $order->id,
],
]],
]);
Typical integration mistakes: incorrect tag loading order (GTM must be first), missing required VK Pixel attributes, lack of email hashing before sending to Meta CAPI. We check these points during testing.
Functionality verification: Meta — Meta Pixel Helper extension in Chrome. VK — statistics in the audiences dashboard (data arrives in 30-60 minutes). Yandex — Metrica → Audience → Retargeting. Additionally, we verify via server logs.
Work process and deliverables
- Analytics — we study your stack (CMS, framework, ad accounts) and determine the list of pixels.
- Design — we choose the integration method: via GTM or directly in code, whether to include server API.
- Implementation — we install base pixels, configure dataLayer, add events (ViewContent, AddToCart, Purchase).
- Testing — we check pixel operation via extensions and logs, fix errors.
- Deploy — we push to production, hand over documentation to the marketer.
What's included
- Installation of base pixels (Meta, VK, Yandex, Google Ads remarketing, TikTok) via GTM.
- Configuration of standard events (PageView, ViewContent, AddToCart, Purchase).
- Server-Side Conversions API connection (on request).
- Verification via extensions and logs.
- Documentation and instructions for the marketer.
- 2 weeks of technical support.
Estimated timelines
| Stage | Time |
|---|---|
| Base pixel installation (3-4 platforms) via GTM | 2–4 hours |
| Event tagging via dataLayer | 4–8 hours |
| Server-Side Conversions API | 1 day |
| Testing and fixes | 2–4 hours |
Full integration — from 1 to 3 business days.
Why choose us
- Experience integrating pixels on over 500 ad campaigns since 2018.
- Certified specialists (Google Partner, Meta Business Partner).
- Guaranteed 99.9% pixel uptime — we fix issues free of charge for one month.
- Transparency — full settings log and GTM container access.
Contact us to discuss your project. Order pixel setup and get full retargeting in 1-3 days. We'll select the optimal pixel combination for your business.







