top of page
Group 853.jpg

Stop Procrastinating and Install Google Analytics 4 Today

Stop Procrastinating and Install Google Analytics 4 Today

  • 5 hours ago
  • 9 min read

Your Google Analytics 4 Install in 4 Simple Steps


Google Analytics 4 install is something every small business website needs to do right now. Here's the fastest path to get it done:

  1. Create a GA4 account and property at analytics.google.com

  2. Add a web data stream and copy your Measurement ID (starts with G-)

  3. Install the tracking code via a CMS plugin, manual gtag.js snippet, or Google Tag Manager

  4. Verify data is flowing using GA4's DebugView or the Realtime report

That's the short version. The rest of this guide walks you through every step in detail.

If you're still putting off setting up analytics on your website, you're flying blind. You don't know who's visiting, where they come from, or what's making them leave. That's a serious problem when you're trying to grow.

The good news? GA4 is free, and getting it running doesn't require a developer. Whether you're on WordPress, Shopify, or a custom-built site, there's a method that fits your setup.

Universal Analytics is gone — fully sunset as of July 1, 2024. GA4 is now the only game in town.

I'm Carlos Cortez, senior consultant at S9 Consulting, and I've helped businesses across industries set up and optimize their google analytics 4 install as part of broader digital transformation projects — so I know exactly where people get stuck and how to avoid it. Let's get you set up the right way.


Why You Need to Complete Your Google Analytics 4 Install Now

If you are still looking for your old Universal Analytics (UA) data, we have some tough news: that ship has sailed. As of July 1, 2024, UA has been fully decommissioned. If you haven't completed your google analytics 4 install, you aren't just missing out on new features—you are literally not collecting any data at all.


GA4 isn't just a "new version" of the old software; it is a complete rebuild designed for a world where privacy regulations (like GDPR) and cross-platform journeys are the norm. Unlike the old system, GA4 can track a user across your website and your mobile app within the same property, giving you a unified view of the customer journey.

To get started, you first need to Set up Google Analytics 4 account. For those who want to dive deep into the technical nuances, Google offers a Google Analytics Certification on Skillshop that we highly recommend for any marketing professional. You can also find great official resources on their Get started with Google Analytics support page.

Understanding the Event-Based Model

The biggest hurdle for most people moving to GA4 is the shift from "sessions" to "events." In the old days, everything was grouped into a 30-minute window called a session. In GA4, every single interaction—a page view, a click, a scroll—is an event.

This model is much more flexible. It allows us to see the actual user journey rather than just a collection of disconnected visits. Because GA4 uses "data streams" (which we will set up in a moment), it can ingest data from multiple sources and stitch them together using "signals" and user IDs. It's a bit like moving from a flip phone to a smartphone; the learning curve is there, but the capabilities are exponentially higher.

Benefits of Enhanced Measurement

One of our favorite things about a fresh google analytics 4 install is "Enhanced Measurement." In the past, if you wanted to track how far someone scrolled down a page or whether they clicked an outbound link, you had to write custom code or set up complex triggers in Google Tag Manager.

With GA4, these are tracked automatically out of the box:

  • Scrolls: Captured when a user reaches the bottom of a page (90% depth).

  • Outbound Clicks: Tracked whenever a user clicks a link that leads away from your domain.

  • Site Search: Automatically pulls the search terms users type into your website’s search bar.

  • Video Engagement: Tracks plays, progress, and completions for embedded YouTube videos.

  • File Downloads: Recognizes clicks on links for PDFs, documents, and zip files.

Step-by-Step: Creating Your Account, Property, and Data Stream

Before we touch any code, we need to build the "container" for your data in the Google Analytics interface.

  1. Create an Account: Go to analytics.google.com. If you’re new, click "Start Measuring." If you already have an account for other sites, go to the Admin gear icon and click "Create Account."

  2. Setup Property: Give it a name (like "My Business Website"). Pay close attention to the Reporting Time Zone and Currency. If you change these later, it can cause "flat spots" or "spikes" in your data because the system has to adjust to the new time offset.

  3. Business Objectives: Google will ask about your business size and objectives (e.g., "Generate Leads" or "Drive Online Sales"). This helps tailor the default reports you see in your dashboard.

If you are working with a team, you need "Editor" level access or higher to create properties and streams. You can learn more about Granting access to Google Analytics to ensure your collaborators have the right permissions.

Setting Up a Web Data Stream

A "Data Stream" is the bridge between your website and Google's servers.

  • Choose Platform: Select "Web."

  • Website URL: Enter your domain (e.g., https://www.example.com). Make sure you choose the correct protocol (HTTP vs HTTPS).

  • Stream Name: Name it something recognizable, like "Primary Website Stream."

  • Enhanced Measurement: Keep this toggled ON. You can always refine which events it tracks later, but it's best to start with everything enabled.

Once you click "Create Stream," you will be presented with your Measurement ID.

Locating Your Measurement ID

Your Measurement ID is the most important piece of information for your google analytics 4 install. It always follows the format G-XXXXXXXXXX.

Pro-tip: This ID is case-sensitive. When you copy it, ensure you aren't grabbing any extra spaces at the beginning or end. Each data stream has its own unique ID, so if you have a mobile app and a website, they will have different IDs, even if they are in the same property.

Choosing the Best Method for Your GA4 Installation

There is more than one way to skin a cat, and there are definitely three main ways to install GA4. The "best" method depends on your technical comfort level and how much control you need.

Method

Best For

Implementation Speed

Flexibility

CMS Plugin

Beginners / WordPress / Shopify

Very Fast

Low

Manual gtag.js

Developers / Custom Sites

Medium

Medium

Google Tag Manager

Marketers / Advanced Tracking

Fast (once GTM is set up)

Very High

Method 1: Using a CMS Plugin for a Quick Google Analytics 4 Install

If you are using a Content Management System (CMS) like WordPress, Shopify, or Squarespace, this is the easiest route. Most of these platforms have built-in fields or reputable plugins where you simply paste your G- ID.

  • WordPress: Use a plugin like GA4WP or Site Kit by Google. You just go to the settings and paste your Measurement ID.

  • Shopify: Shopify has a native Google channel. You can follow our guide on how to Add Google Analytics to a Shopify store.

  • Squarespace: Go to Settings > Developer Tools > External API Keys and paste your ID into the Google Analytics field. We have a detailed walkthrough to Add Google Analytics 4 to Squarespace if you need more help.

Method 2: Manual gtag.js Implementation for Developers

If you have a custom-coded site and don't want to use a tag manager, you can use the "native" method. This involves placing a small snippet of JavaScript, called gtag.js, directly into your website's code.

In your GA4 Data Stream settings, look for "View tag instructions" and select "Install manually." You will see a code block that looks like this:

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'G-XXXXXXXXXX');
</script>

You must paste this code immediately after the opening <head> element on every single page of your website. If you miss a page, you won't get data for it.

Method 3: Advanced Google Analytics 4 Install via Google Tag Manager

At S9 Consulting, this is the method we recommend for 99% of our clients in Boston and Jacksonville. Google Tag Manager (GTM) acts as a middleman. You install GTM once, and then you can add GA4, Facebook Pixels, and LinkedIn tags without ever touching your website's code again.

  1. Create a Tag: In GTM, click "New Tag."

  2. Tag Configuration: Choose "Google Analytics: GA4 Configuration."

  3. Measurement ID: Paste your G- ID here.

  4. Triggering: Select "All Pages."

  5. Publish: Don't forget to hit the "Submit" and "Publish" buttons!

For a deeper dive, check out our guide on Adding Google Analytics 4 to a site using GTM.

How to Verify Your GA4 Setup is Collecting Data

Once you’ve finished your google analytics 4 install, don't just walk away and assume it’s working. Verification is the most skipped step, and it’s where most errors live.

Data can take up to 30 minutes to start appearing in standard reports, but you can see it instantly using the Realtime report or the DebugView.

  1. Open your website in a new incognito window.

  2. Click around a few pages.

  3. In GA4, go to Reports > Realtime. You should see at least one user (you!) on the map.

Using GA4 DebugView for Real-Time Testing

The DebugView is a more advanced tool that shows you a second-by-second timeline of every event hitting Google's servers.

To use it, we recommend installing the Google Analytics Debugger Chrome extension. Once enabled, navigate to Admin > DebugView in your GA4 property. As you browse your site, you will see events like page_view and user_engagement pop up in real-time. This is essential for ensuring that custom events are tracking correctly. You can learn more about how to Set up and track custom events in Google Analytics 4 once your basic install is verified.

Troubleshooting Common Installation Errors

If you don't see any data, don't panic. Check these three things:

  • Duplicate Tags: Ensure you don't have the same Measurement ID installed twice (e.g., once via a plugin and once via GTM). This will double-count your data.

  • Incorrect ID: Double-check that the G- ID in your code matches the one in your Data Stream.

  • Placement: If installing manually, ensure the code is in the <head>, not the footer. Most browsers stop loading scripts if the user leaves the page before the footer loads.

Post-Installation Checklist: Optimizing Your GA4 Property

Setting up the tracking code is just the beginning. To get the most out of your google analytics 4 install, you need to tweak a few settings.

  1. Data Retention: By default, GA4 only keeps user-level data for 2 months. Change this to 14 months immediately in Admin > Data Settings > Data Retention.

  2. Exclude Internal Traffic: You don't want your own visits (or your employees' visits) skewing your data. Go to Data Streams > [Your Stream] > Configure Tag Settings > Define Internal Traffic and add your office IP addresses.

  3. Cross-Domain Tracking: If your checkout process happens on a different domain (like myshopify.com instead of mybrand.com), you need to configure this in the Data Stream settings so GA4 knows it's the same user.

Defining Conversions and Key Events

In GA4, "Conversions" are now called "Key Events." Not every click is equal. A "Contact Us" form submission is much more valuable than a simple page view.

To track these, go to the "Events" tab. If an event is already being tracked (like a file_download), you can simply toggle the switch to "Mark as key event." If it's a specific page like a "Thank You" page, you'll need to create a new event based on that page's URL. For help with this, see our guide on how to Set up a form submission event in Google Analytics 4 or our more general guide on how to Set up lead tracking in Google Analytics 4.

Linking Search Console and Other Tools

GA4 is powerful, but it's even better when it talks to your other tools. We recommend linking the following immediately:

  • Google Search Console: This brings your organic search keyword data directly into GA4. Follow our steps to Link Google Analytics 4 with Google Search Console.

  • Google Ads: Essential if you are running paid search campaigns; it allows you to import your GA4 conversions into Ads for better bidding.

  • BigQuery: If you have massive amounts of data, GA4 offers a free export to BigQuery for advanced data science and storage.

Frequently Asked Questions about GA4 Installation

How long does it take for GA4 data to start appearing?

While the Realtime report and DebugView show data instantly, it typically takes 24 to 48 hours for data to fully process and appear in your standard reports (like Acquisition or Engagement). If you just finished your google analytics 4 install, check back tomorrow for the full picture.

Can GA4 track both my website and mobile app?

Yes! This is one of GA4's biggest strengths. You can create one property and add a "Web" data stream for your site, an "iOS" stream for your Apple app, and an "Android" stream for your Play Store app. GA4 will use a "User ID" to recognize that the person browsing on their phone is the same person who later bought something on their laptop.

Is Google Tag Manager required for GA4?

No, it is not required, but we highly recommend it. While you can complete a google analytics 4 install using a plugin or manual code, GTM makes your life much easier in the long run. It allows you to add complex tracking (like button clicks or video tracking) without having to edit your website's code every time.

Conclusion

A proper google analytics 4 install is the foundation of every successful digital strategy. Without it, you are making guesses about your business based on gut feeling rather than hard data. By following the steps above—creating your property, choosing an installation method, and verifying your data—you’ve taken a massive step toward digital efficiency.

At S9 Consulting, we believe in long-term partnerships that focus on process automation and efficiency. Whether you are in Boston, MA or Jacksonville, FL, we help businesses move beyond basic tracking into advanced systems integration and AI-driven insights.

If you're feeling overwhelmed or just want to make sure it's done perfectly the first time, we can handle the heavy lifting for you. Set up Google Analytics 4 account with our expert team today and start making data-driven decisions that actually move the needle.

 
 

Ready to talk?

Our sales and consultation teams are available to meet via Zoom to discuss how S9 can help your business.

bottom of page