hidden heading

  • Threads
  • Categories
  • Users
  • Blog
  • forum
  • group
  • search

mmadhu

  • Members
  • Joined July 24, 2023
  • message Posts
  • forum Threads
  • favorite Followers
  • favorite_border Follows
  • person_outline Details

mmadhu has posted 24 messages.

  • See post chevron_right
    mmadhu
    Members
    Remove FBCLID from Google Analytics (GA4) Reports Reporting Dec. 4, 2023, 6:10 a.m.

    I am a beginner and this might be an easy question. but my issue is that fbclid is messing up my Google Analytics reports. It tricks GA into thinking that every click to the same page is a different page altogether. While all of the URLs in my report actually lead to the exact same landing page, the FBCLID parameter at the end of every URL confuses GA and makes it think that all of the pages are different.

    I want all of these URLs to be rolled into one single line, but the unique FBCLID for every link causes them to show up as distinct values in different columns.

    Please help

  • See post chevron_right
    mmadhu
    Members
    Is it possible to include HTML tags in GA4 ecommerce events? Code Implementation Dec. 4, 2023, 5:45 a.m.
    @agkhy
    @mmadhu

    Can I use HTML tags within GA4 ecommerce events?
    dataLayer.push({
    event: "view_item",
    ecommerce: {
    currency: "USD",
    value: 7.77,
    items: [
    {
    item_id: "SKU_12345",
    item_name: "Stan <sup>and</sup> Friends Tee",

    The HTML tags will not produce any impact. The value you provide in that field is precisely what will be displayed in the reporting.

    Then the reporting will showcase the text "<sup>" itself, without rendering it as superscripted text?

  • See post chevron_right
    mmadhu
    Members
    Is it possible to include HTML tags in GA4 ecommerce events? Code Implementation Dec. 4, 2023, 5:41 a.m.

    Can I use HTML tags within GA4 ecommerce events?
    dataLayer.push({
    event: "view_item",
    ecommerce: {
    currency: "USD",
    value: 7.77,
    items: [
    {
    item_id: "SKU_12345",
    item_name: "Stan <sup>and</sup> Friends Tee",

  • See post chevron_right
    mmadhu
    Members
    relationship between "Total users", "Users", "New users" and "Returning users" in GA4 Other GA Questions Dec. 4, 2023, 5:25 a.m.

    I'm curious about the interrelation among "Total users," "Users," "New users," and "Returning users."

    1. How does "Total users" differ from "Users"?

    2-1. Is the equation (# of total users) = (# of new users) + (# of returning users) accurate?
    2-2. If 2-1 is accurate, where can I find the # of total users in the GA4 report?

    Thank you.

  • See post chevron_right
    mmadhu
    Members
    I want to implement scroll depth tracking in GA4. Do we use GTM? Please help!! Other GA Questions Oct. 31, 2023, 11:24 a.m.

    Hi,
    I want to implement scroll depth tracking in GA4. Is it to be done via GTM? Can you please let me know the procedure. Thanks!

  • See post chevron_right
    mmadhu
    Members
    Differences between "Total users", "Users", "New users" and "Returning users" Other GA Questions Oct. 17, 2023, 5:25 a.m.

    What's the relationship between "Total users," "Users," "New users," and "Returning users."

    1. How do "Total users" and "Users" vary from each other?

    2-1. Is the following equation accurate? (# of total users) = (# of new users) + (# of returning users)
    2-2. If 2-1 holds true, where can I find the count of "Total users" in a GA4 report?

  • See post chevron_right
    mmadhu
    Members
    Purchase events sent via Measurement Protocol source is always "direct" Identifying Conversions Oct. 3, 2023, 8:36 a.m.

    Thank you for this. The solution is indeed to remove GA1.1.​ from the beginning of the ID and send that as the client_id ​value.

  • See post chevron_right
    mmadhu
    Members
    GA4 Ecommerce Transactions Not Being Tracked Identifying Conversions Sept. 21, 2023, 11:19 a.m.

    I've recently transitioned from Universal Analytics (UA) to GA4, and while UA successfully tracked website purchases, GA4 is not recording any purchase data. Our website operates on Netsuite.

    During the migration process, I came across an event named "place_an_order," which seemed to be the method used to track completed purchases, although I can't confirm this.

    In Google Tag Manager, I've identified several tracking events configured for various actions. However, I'm facing challenges in pinpointing the one responsible for tracking purchases. I'm curious if anyone might have insights on where I should look to unravel this mystery.

  • See post chevron_right
    mmadhu
    Members
    Purchase events sent via Measurement Protocol source is always "direct" Identifying Conversions Sept. 21, 2023, 11:13 a.m.

    I am sending purchase events on the server-side via the Measurement Protocol like so:

            'client_id' => $_COOKIE['_ga'],
            'events' => array(
                'name' => 'purchase',
                'params' => array(
                    'currency' => $currency,
                    'transaction_id' => $referenceCode,
                    'value' => $value
                )
            )
    

    Everything seems to function properly, except for the fact that all of them display "direct" as their source. Given the significant influx of traffic from Google Ads, it's reasonable to assume that at least one of the conversions originated from an advertisement. Should the system automatically establish a connection between user tracking using the client_id variable, or do I need to take additional action, like manually configuring the campaign_details? If manual setup is required, it does seem peculiar that GA4 wouldn't handle this automatically by utilizing the client_id.

  • See post chevron_right
    mmadhu
    Members
    What is the best way to track FAQ openings Code Implementation Sept. 21, 2023, 10:46 a.m.

    1) To create a custom event, you typically start by selecting a pre-defined event (such as "page_location") and then specify a value (like the page URL). In my case, this action places the tag on the FAQ page. Generally, you can't invent a new event that didn't exist previously. Is my understanding correct?

    2) Regarding the custom event dimensions, my goal is to identify which of the FAQs have been opened. Users can click on plus "+" signs to reveal answers for each of the 20 different FAQs, and I want to track exactly which ones were opened, not just the overall count. How can I instruct Tag Manager to distinguish each "+" click? I considered using a text string to identify each question, but it seems crucial to register the click on the "+" sign itself.

    Do you have any recommendations on how to achieve this? I imagine this must have been done before, and I'd appreciate any insights.

  • See post chevron_right
    mmadhu
    Members
    API request refused with "Request had insufficient authentication scopes" Code Implementation Sept. 21, 2023, 10:25 a.m.

    The service account generated according to the Java API GA4 quickstart guide lacks the necessary authentication scopes to grant access to the associated GA4 Account and Property, as indicated in the Service Account .json file.

    As a result, utilizing the API to fetch analytics metrics in Java becomes unfeasible.

  • See post chevron_right
    mmadhu
    Members
    "Paste your Google tag immediately after the <head> on each page of your website"? Code Implementation Sept. 21, 2023, 8:52 a.m.
    @agkhy

    Thank you for sharing these extra details. Given the challenges you're facing, my recommendation would be to consider opening a support topic on the Site Kit plugin support forums. Alternatively, you can follow the guide outlined below: sitekit.withgoogle.com/documentation/troubleshooting/dashboard/#client-id

    I opted to experiment with another plugin that appeared to be more lightweight and had favorable reviews. This plugin is named "GA Google Analytics" (you can find it at this link: wordpress.org/plugins/ga-google-analytics/). After installing it and adding my tracking code, it functioned smoothly without any complications.

    Hence, I've decided to continue using this plugin, unless there are significant advantages to using Site Kit that I might be missing out on.

  • See post chevron_right
    mmadhu
    Members
    "Paste your Google tag immediately after the <head> on each page of your website"? Code Implementation Sept. 21, 2023, 8:49 a.m.
    @mmadhu

    Thankyou very much for your response. I indeed attempted to insert the code into the "header.php" file, but unfortunately, it didn't establish a connection with GA4 as expected. I'm uncertain about the root cause of this issue, so I've reached out to my hosting provider, One.com, for assistance. I will keep you updated if they provide any valuable insights.

    It's possible that I may eventually resort to using a plugin after all. I had previously utilized MonsterInsights, but I uninstalled it due to an excessive amount of ads and concerns about its impact on site performance.

    Is it conceivable that the complexity of the instruction, "Paste your Google tag immediately after the <head> on each page of your website," leads most individuals to eventually opt for a plugin to avoid the challenges associated with manual implementation?

    I've received a response from One.com support, and unfortunately, they couldn't provide a standard solution for syncing GA4 with a WordPress.org site. Consequently, I decided to opt for a plugin and chose Site Kit, as it was recommended earlier.

    However, for reasons I can't quite pinpoint, Site Kit failed to establish a connection with my site for both GA4 and Google Search Console. I used the same Google account that I registered these two services with.

    The error message I encountered stated "invalid client_id" and "invalid client_secret" (you can refer to the screenshot below). When I clicked on "Remake configuration" (the green button), a completely black page appeared with the following text in the upper left corner: "invalid parameter: 'client_id'."

    This experience doesn't align with the "installation instructions" provided for setting up Site Kit with GA4. Instead, it immediately displays error messages after I activate the plugin and sign in with my Google ID.

    Do you have any insights into what might be causing this issue? Thanks!

  • See post chevron_right
    mmadhu
    Members
    "Paste your Google tag immediately after the <head> on each page of your website"? Code Implementation Sept. 21, 2023, 8:48 a.m.

    Thankyou very much for your response. I indeed attempted to insert the code into the "header.php" file, but unfortunately, it didn't establish a connection with GA4 as expected. I'm uncertain about the root cause of this issue, so I've reached out to my hosting provider, One.com, for assistance. I will keep you updated if they provide any valuable insights.

    It's possible that I may eventually resort to using a plugin after all. I had previously utilized MonsterInsights, but I uninstalled it due to an excessive amount of ads and concerns about its impact on site performance.

    Is it conceivable that the complexity of the instruction, "Paste your Google tag immediately after the <head> on each page of your website," leads most individuals to eventually opt for a plugin to avoid the challenges associated with manual implementation?

  • See post chevron_right
    mmadhu
    Members
    "Paste your Google tag immediately after the <head> on each page of your website"? Code Implementation Sept. 21, 2023, 8:34 a.m.

    I aimed to integrate Google Analytics 4 into my WordPress website without resorting to any unnecessary plugins. Therefore, I followed this guide: [link to the guide].

    The guide is straightforward to follow, but the final step is quite perplexing. It instructs, "Paste your Google tag immediately after the <head> on each page of your website."

    This directive left me wondering about its practical implementation. If you're using a file manager (in my case, One.com), it's unclear where exactly the Google tag should be inserted.

    I attempted to add it to the "header.php" file within the active theme I'm using, but unfortunately, it didn't yield the desired results.

    Could you offer any advice or suggestions to help with this issue?

  • See post chevron_right
    mmadhu
    Members
    Some pages not showing up in my GA4? Reporting Sept. 21, 2023, 5:53 a.m.

    This solved my problem. Never knew. Thank you!

  • See post chevron_right
    mmadhu
    Members
    Some pages not showing up in my GA4? Reporting Sept. 21, 2023, 5:49 a.m.

    Hello there,

    I have a question, although I'm not particularly experienced with GA. I manage a website with roughly 150 pages. Recently, I was trying to assess the performance of a specific post, so I conducted a search for it within GA. However, I couldn't locate it. After some investigation, I realized that it doesn't appear in GA at all, and this seems to be the case for several posts (although most of them are visible).

    I should note that my GA4 is connected to Google Tag Manager, and I double-checked by testing it again. The tag appears to be firing correctly, so it doesn't seem like the issue is with the code not being implemented on those particular pages.

    Does anyone have any insights into how this might be possible or what could be causing it?

  • See post chevron_right
    mmadhu
    Members
    Eliminate fraudulent sales and refund transactions from GA4 ecommerce analytics. Reporting Sept. 21, 2023, 5:19 a.m.

    I'm worried about the scenario where a user has chosen to opt out or hasn't given consent for GA tracking. In such cases, any manual refund workaround would likely need to be excluded as well. Ultimately, GA cannot replace regular backend sales history.

easyinisghts_logo
likedininstagrammediumtwitter

Singapore
14-04 160 Robinson Rd,
Singapore - 068914

India
619/2-7, Chattarpur,
Delhi, 110074

Join our Newsletter

Become a data driven marketer

Resources

  • Knowledge Base
  • Blogs
  • Ebooks
  • Contact Us
  • Use Cases

Join our Newsletter

Become a data driven marketer

Singapore
14-04 160 Robinson Rd,
Singapore - 068914

India
619/2-7, Chattarpur,
Delhi, 110074

© 2024 EasyInsights. All rights reserved. | ® EasyInsights Pvt. Ltd.