How to Track Conversions with Google Analytics 4 (GA4) #
Tracking conversions on your website is crucial for understanding user behavior and improving business performance. With GA4, the process has changed a little — but don’t worry, it’s still manageable.
Step 1: Create a Google Account and Google Analytics Property #
Start by creating a Google account — doesn’t need to be Gmail. Once done, you can set up a GA4 property. This property will help you track visitors and conversions.
Step 2: Set Up Your GA4 Property #
After creating your GA4 property, generate a web data stream. You’ll get a Tag ID. This is important — you’ll need it shortly.
Step 3: Add GA4 Tags to Shopify #
From Shopify admin, follow these steps:
- Go to Online store > Preferences
- In the Google Analytics section, click Manage pixel here
- Click Connect your Google account
- Select your GA4 property’s tag
- Click Connect
If you haven’t installed the Google & YouTube channel yet, Shopify will prompt you. And nope — you don’t need Google Merchant Center here.
Want to get serious with optimization? Learn how to run AB Tests on Shopify.
What’s Conversion Tracking in GA4? #
GA4 tracks "Key Events" — those juicy actions like purchases, form submissions, and sign-ups. With tracking in place, you’ll better understand your customer journey and make smarter CRO moves.
Shopify analytics is decent, but GA4 gives you superpowers.
Tip: If you're migrating to Checkout 2.0, here's how to keep your tracking: Checkout 2.0 tracking setup
Or skip the struggle and use our module: Shopify Checkout Extensibility Upgrade
Extra Tracking? Meet Customer Events API #
GA4’s cool, but you can go next-level with the Shopify Customer Events API — track clicks, add-to-carts, checkouts, and more. Use Shopify’s Pixels Manager to:
- Monitor behaviors like checkout, clicks
- Keep your site secure and compliant
- Avoid conflicts with random scripts
Adding Pixels? You’ve got two options:
- Install via marketing apps
- Ask your dev (or us 👀) to add them manually
Adding Custom Pixels #
Let’s say you want to add a Meta pixel. Here’s what you might start with:
<!-- Meta Pixel Code --> <script> !function(f,b,e,v,n,t,s)... </script> <noscript> <img ... /> </noscript>
But Shopify’s pixels don’t support HTML like that, so here’s the JavaScript version:
!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)};
Want to load a script like GA’s gtag?
<!-- Global site tag (gtag.js) - Google Analytics --> <script async src="code.js"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("js", new Date()); gtag("config", "YOUR_PIXEL_ID"); </script>
Here’s the JS-only version for Shopify custom pixels:
const script = document.createElement("script"); script.setAttribute("src", "code.js"); script.setAttribute("async", ""); document.head.appendChild(script); window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("js", new Date()); gtag("config", "YOUR_PIXEL_ID");
Okay, So It's a Bit More Techy Than Expected... #
If this feels like a dev-level task — it is. But hey, that’s why Shopify devs and CRO agencies exist 😉. Don’t hesitate to reach out and get this done properly.
Ready to move forward with better tracking? Then make sure to check out our CRO Audit for Shopify and see where you can improve.
Shopify for $1/month + Earn 1% of all sales as subscription credits, up to $10,000.
Glossary Terms in This Article:
- Analytics: Analytics is a service for tracking website performance.
- Cart: Cart is a temporary holding area for items in Shopify.
- Checkout: Checkout is the process of completing a purchase in Shopify.
- CRO: CRO is the process of increasing the percentage of users who convert.
- HTML: HTML is the standard language for creating web pages.
- SEO: SEO refers to Search Engine Optimization.
Frequently Asked Questions
Quick Answers for Tracking Conversions
- What is a CRO audit?
- A CRO audit analyzes your website's performance and user behavior to improve conversions.
- How do I set up Google Analytics 4 on my Shopify store?
- To set up GA4 on your Shopify store, you need to create a Google account, set up a GA4 property, and add GA4 tags to your Shopify store through the Online Store > Preferences section.
- What are Key Events in GA4?
- In GA4, Key Events are the important actions you want to track on your website, such as purchases, sign-ups, or other valuable user interactions.
- Can I use Shopify's analytics instead of GA4?
- While Shopify provides its own analytics, integrating GA4 allows for more comprehensive tracking and analysis of your entire customer funnel and behavior.
- What is the Shopify Customer Events API?
- The Shopify Customer Events API allows you to send more than just basic data to GA4 by tracking customer actions on your website, such as clicks and cart additions.
- How can I add custom pixels to my Shopify store?
- You can add custom pixels to your Shopify store either through marketing apps that install them for you or by having a developer add custom pixels manually.