← Back to Blog
google analyticsmigrationgetting startedanalytics tips

How to Migrate from GA4 to EngageTrack in 30 Minutes

Step-by-step guide to migrate from Google Analytics 4 to EngageTrack. Replace GA4 in 30 minutes.

EngageTrack Team··10 min read

You can migrate from Google Analytics 4 to EngageTrack in about 30 minutes. This is a practical, step-by-step migration guide — not a comparison post or a sales pitch. If you have already decided to leave GA4, this is the execution plan.

The process: install EngageTrack alongside GA4, verify data is flowing, set up your conversion tracking, run both tools in parallel for a few weeks, then remove GA4 and simplify your cookie consent setup.

Before You Start: What You Are Giving Up

An honest accounting. GA4 does things EngageTrack does not:

  • Google Ads integration. If you run Google Ads campaigns and rely on GA4 for conversion tracking, audience building, or Smart Bidding, removing GA4 breaks that pipeline. You would need to keep the Google Ads tag (gtag) separately or use Google Ads conversion tracking independently.
  • BigQuery export. GA4's free BigQuery integration gives you raw event-level data for custom analysis. EngageTrack has a REST API but not a data warehouse export.
  • 180+ event parameters and dimensions. GA4's data model is extremely flexible. EngageTrack tracks the metrics that matter for most businesses but does not offer the same granularity.
  • Cross-domain tracking. GA4 handles cross-domain user journeys via linker parameters. EngageTrack tracks each domain as a separate site.
  • Google Search Console integration. GA4 can import Search Console data. EngageTrack does not integrate with Search Console (you can still use Search Console directly).

What You Are Gaining

  • Revenue attribution. EngageTrack connects to Stripe, LemonSqueezy, Paddle, and Polar and shows revenue by traffic source. GA4 requires complex e-commerce event setup to get anything similar.
  • 20-40% more accurate data. No consent opt-outs means 100% visitor coverage. GA4 with a consent banner typically captures 50-70% of visitors.
  • No cookie banner (for analytics). EngageTrack does not set cookies, so it does not require consent. If analytics was the only reason for your cookie banner, you can remove it entirely.
  • Simpler dashboard. One screen with the metrics that matter, not 50 reports you never open.
  • 3KB script vs 45KB+. GA4's gtag.js is significantly heavier than EngageTrack's tracking script.
  • EU-hosted data. EngageTrack runs from Frankfurt. No data transfers to the US, no Schrems II concerns.

Step 1: Install EngageTrack Script Alongside GA4 (5 Minutes)

Sign up at engagetrack.net/register. Create a site. Copy the script tag.

Add it to your site's <head>, alongside your existing GA4 script. The two tools do not conflict — they operate independently.

<!-- Existing GA4 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXX"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'G-XXXXXXX');
</script>
 
<!-- EngageTrack — add this -->
<script
  defer
  data-site-id="YOUR_SITE_ID"
  src="https://cdn.engagetrack.net/sdk.js"
></script>

For Next.js, add the EngageTrack script in your root layout:

// app/layout.tsx
import Script from "next/script";
 
export default function RootLayout({ children }) {
  return (
    <html>
      <head>
        <Script
          defer
          data-site-id="YOUR_SITE_ID"
          src="https://cdn.engagetrack.net/sdk.js"
        />
      </head>
      <body>{children}</body>
    </html>
  );
}

EngageTrack does not need to be placed behind your consent management platform — it does not set cookies and does not require consent.

Step 2: Verify Data in the Realtime Panel (2 Minutes)

Open your EngageTrack dashboard. Go to the Realtime view. Open your website in another tab and navigate a few pages.

You should see your visit appear within seconds: current page, referrer, country, and device type. If data is flowing, the installation is correct.

Common issues:

  • Script blocked by ad blocker. Some ad blockers block analytics scripts by domain. EngageTrack supports proxying through your own domain to avoid this.
  • Wrong site ID. Double-check the data-site-id attribute matches the site you created in the dashboard.
  • Cached page. Hard refresh (Ctrl+Shift+R) to ensure the latest HTML with the script tag loads.

Step 3: Connect Your Payment Provider (5 Minutes)

If you sell a product or SaaS, connect your payment provider to enable revenue attribution. This is optional but is one of the main reasons to switch from GA4 — GA4 makes revenue tracking extremely complex.

Stripe: Go to Settings > Integrations > Stripe. Click Connect. Authorize via OAuth. Done in 30 seconds.

LemonSqueezy: Paste your API key. EngageTrack auto-registers webhooks.

Paddle: Paste your API key. Webhooks auto-registered.

Polar: Paste your API key. Same process.

Revenue will start appearing in your dashboard alongside traffic sources after the first payment event.

Step 4: Set Up Goals and Funnels (10 Minutes)

Map your GA4 conversion events to EngageTrack goals. Here is how the concepts translate:

GA4 ConceptEngageTrack EquivalentSetup
Conversion eventGoalSite Settings > Goals > Add Goal
Event parameterCustom event propertyengagetrack.track("event", { prop: "value" })
Funnel explorationFunnelSite Settings > Funnels > Add Funnel
AudienceFilter by source/page/countryDashboard filter bar
E-commerce purchaseRevenue attributionAutomatic via payment provider webhook

Creating Goals

For page-based goals (e.g., visited /pricing, visited /signup-complete):

Go to Site Settings > Goals and create a pageview goal with the URL path.

For event-based goals (e.g., button click, form submission):

EngageTrack's SDK auto-tracks some events: outbound link clicks, file downloads, and form submissions. For custom events, add tracking calls:

// Track a custom signup event
engagetrack.track("signup_started", {
  plan: "pro",
  source: "pricing_page",
});

Then create a goal in the dashboard matching the event name signup_started.

Creating Funnels

If you had a funnel exploration in GA4 (e.g., Landing Page > Pricing > Signup > Payment), recreate it in EngageTrack:

Go to Site Settings > Funnels. Define the steps using page paths or custom events. EngageTrack will show conversion and drop-off rates at each step, filterable by traffic source.

Step 5: Run Both Tools in Parallel (2-4 Weeks)

Keep both GA4 and EngageTrack running simultaneously. During this period, compare:

  • Total sessions. EngageTrack should show higher numbers because it captures visitors who rejected cookies via your consent banner.
  • Traffic source distribution. The proportions should be similar between the two tools, even if absolute numbers differ.
  • Goal completions. Compare conversion counts for equivalent goals. EngageTrack's numbers should be equal to or higher than GA4 (again, because of consent coverage).
  • Top pages. The ranking of your most-visited pages should be nearly identical.

The parallel period builds confidence that you are not losing visibility by switching. Two weeks is usually sufficient; four weeks is safer if you want to see a full monthly cycle.

Step 6: Remove the GA4 Script (5 Minutes)

Once you are confident in EngageTrack's data, remove GA4:

  1. Delete the GA4 script tags from your site (both the gtag.js loader and the config call)
  2. If GA4 was loaded through Google Tag Manager, remove the GA4 tag from your GTM container
  3. If your consent management platform had an "Analytics" category solely for GA4, remove that category

Do not delete your GA4 property. You may want to reference historical data later. Just remove the tracking code from your site so it stops collecting new data.

Audit your remaining scripts. If GA4 was the only reason you had a consent banner, you can remove the consent management platform entirely.

If you still use other cookie-setting scripts (Facebook Pixel, HubSpot, Intercom, etc.), keep the consent banner but remove the analytics category. Your banner becomes simpler with fewer categories to explain.

See the cookie banner audit guide for a detailed walkthrough of how to determine whether you still need consent.

Step 8: Update Your Privacy Policy (5 Minutes)

Remove references to Google Analytics and Google's data processing. Add a brief section about EngageTrack:

  • Tool name: EngageTrack
  • Data collected: page URLs, referrer, browser type, device type, country (derived from IP, IP not stored)
  • Cookies: none
  • Data location: EU (Frankfurt)
  • Purpose: website analytics and traffic source analysis
  • No personal data stored, no cross-site tracking

GA4 Features Mapped to EngageTrack Equivalents

A complete reference for what translates and what does not:

GA4 FeatureEngageTrack EquivalentNotes
Pageview trackingAutomaticBuilt into the script
Event trackingengagetrack.track()Custom events with properties
User IDengagetrack.identify()Links sessions to a user identity
Conversions / Key EventsGoalsPage-based or event-based
Funnel explorationFunnelsVisual step-through with drop-off rates
Traffic source reportsDashboard (default view)Sessions and revenue by source
Realtime reportRealtime panelLive visitors with current page
E-commerce trackingRevenue attributionAutomatic via Stripe/LemonSqueezy/Paddle/Polar
Audience segmentsDashboard filtersFilter by source, page, country, device
Search Console integrationNot availableUse Search Console directly
BigQuery exportREST APIQuery via API, no warehouse export
Google Ads integrationNot availableUse Google Ads conversion tracking separately
Cross-domain trackingNot availableEach domain is a separate site
Consent modeNot neededNo cookies = no consent required
Data retention settingsAutomaticData retained per your plan

FAQ

Can I import historical GA4 data into EngageTrack?

No. EngageTrack does not import historical data from GA4 or any other analytics tool. Your data starts from the moment you install the script. Keep your GA4 property active (just remove the tracking code) so you can reference historical data in the GA4 interface.

What about Google Search Console?

Search Console is a separate product from GA4 and continues to work independently. You access it at search.google.com/search-console. The only thing you lose is the GA4 integration that shows Search Console data inside the GA4 interface — but the same data is available directly in Search Console.

How do I track conversions in EngageTrack?

Two ways. For page-based conversions (visited a thank-you page, reached a confirmation URL), create a pageview goal with the URL path. For action-based conversions (clicked a button, submitted a form, started a trial), fire a custom event with engagetrack.track("event_name") and create a goal matching that event name.

Will my site speed improve after removing GA4?

Yes. GA4's gtag.js is 45KB+ and makes multiple network requests during page load. Removing it eliminates that overhead. EngageTrack's script is 3KB gzipped and loads asynchronously with defer, so its performance impact is minimal. The combined effect — removing GA4 and potentially removing the consent management platform script — typically saves 100-300ms of page load time.

What if I still need Google Ads conversion tracking?

You can run the Google Ads conversion tag (gtag with your AW- ID) independently of GA4. Google Ads conversion tracking does not require GA4 — it has its own tag. You will still need consent for the Google Ads tag since it sets cookies, but you can remove the GA4-specific consent requirement. Configure Google Ads conversion tracking directly in your Google Ads account.


The migration takes 30 minutes of active work plus 2-4 weeks of parallel running. The result: complete visitor coverage, built-in revenue attribution, no cookie banner (if GA4 was the only reason for it), and a dashboard you actually look at. Start your free 14-day trial — no credit card required.

For detailed setup instructions, see the getting started guide and goals documentation.

Related Articles