• majorAlexa

        See all notifications

        Skip to content
        Moz logo Menu open Menu close
        • Products
          • Moz Pro
          • Moz Pro Home
          • Moz Local
          • Moz Local Home
          • STAT
          • Moz API
          • Moz API Home
          • Compare SEO Products
          • Moz Data
        • Free SEO Tools
          • Domain Analysis
          • Keyword Explorer
          • Link Explorer
          • Competitive Research
          • MozBar
          • More Free SEO Tools
        • Learn SEO
          • Beginner's Guide to SEO
          • SEO Learning Center
          • Moz Academy
          • MozCon
          • Webinars, Whitepapers, & Guides
        • Blog
        • Why Moz
          • Digital Marketers
          • Agency Solutions
          • Enterprise Solutions
          • Small Business Solutions
          • The Moz Story
          • New Releases
        • Log in
        • Log out
        • Products
          • Moz Pro

            Your all-in-one suite of SEO essentials.

          • Moz Local

            Raise your local SEO visibility with complete local SEO management.

          • STAT

            SERP tracking and analytics for enterprise SEO experts.

          • Moz API

            Power your SEO with our index of over 44 trillion links.

          • Compare SEO Products

            See which Moz SEO solution best meets your business needs.

          • Moz Data

            Power your SEO strategy & AI models with custom data solutions.

          Let your business shine with Listings AI
          Moz Local

          Let your business shine with Listings AI

          Learn more
        • Free SEO Tools
          • Domain Analysis

            Get top competitive SEO metrics like DA, top pages and more.

          • Keyword Explorer

            Find traffic-driving keywords with our 1.25 billion+ keyword index.

          • Link Explorer

            Explore over 40 trillion links for powerful backlink data.

          • Competitive Research

            Uncover valuable insights on your organic search competitors.

          • MozBar

            See top SEO metrics for free as you browse the web.

          • More Free SEO Tools

            Explore all the free SEO tools Moz has to offer.

          NEW Keyword Suggestions by Topic
          Moz Pro

          NEW Keyword Suggestions by Topic

          Learn more
        • Learn SEO
          • Beginner's Guide to SEO

            The #1 most popular introduction to SEO, trusted by millions.

          • SEO Learning Center

            Broaden your knowledge with SEO resources for all skill levels.

          • On-Demand Webinars

            Learn modern SEO best practices from industry experts.

          • How-To Guides

            Step-by-step guides to search success from the authority on SEO.

          • Moz Academy

            Upskill and get certified with on-demand courses & certifications.

          • MozCon

            Save on Early Bird tickets and join us in London or New York City

          Unlock flexible pricing & new endpoints
          Moz API

          Unlock flexible pricing & new endpoints

          Find your plan
        • Blog
        • Why Moz
          • Digital Marketers

            Simplify SEO tasks to save time and grow your traffic.

          • Small Business Solutions

            Uncover insights to make smarter marketing decisions in less time.

          • Agency Solutions

            Earn & keep valuable clients with unparalleled data & insights.

          • Enterprise Solutions

            Gain a competitive edge in the ever-changing world of search.

          • The Moz Story

            Moz was the first & remains the most trusted SEO company.

          • New Releases

            Get the scoop on the latest and greatest from Moz.

          Surface actionable competitive intel
          New Feature

          Surface actionable competitive intel

          Learn More
        • Log in
          • Moz Pro
          • Moz Local
          • Moz Local Dashboard
          • Moz API
          • Moz API Dashboard
          • Moz Academy
        • Avatar
          • Moz Home
          • Notifications
          • Account & Billing
          • Manage Users
          • Community Profile
          • My Q&A
          • My Videos
          • Log Out

        The Moz Q&A Forum

        • Forum
        • Questions
        • My Q&A
        • Users
        • Ask the Community

        Welcome to the Q&A Forum

        Browse the forum for helpful insights and fresh discussions about all things SEO.

        1. Home
        2. Digital Marketing
        3. Conversion Rate Optimization
        4. Need help Tracking PPC vs Organic and respective ROI

        Moz Q&A is closed.

        After more than 13 years, and tens of thousands of questions, Moz Q&A closed on 12th December 2024. Whilst we’re not completely removing the content - many posts will still be possible to view - we have locked both new posts and new replies. More details here.

        Need help Tracking PPC vs Organic and respective ROI

        Conversion Rate Optimization
        3
        3
        2777
        Loading More Posts
        • Watching

          Notify me of new replies.
          Show question in unread.

        • Not Watching

          Do not notify me of new replies.
          Show question in unread if category is not ignored.

        • Ignoring

          Do not notify me of new replies.
          Do not show question in unread.

        • Oldest to Newest
        • Newest to Oldest
        • Most Votes
        Reply
        • Reply as question
        Locked
        This topic has been deleted. Only users with question management privileges can see it.
        • tjsherrill
          tjsherrill last edited by

          So I have a client who uses PPC and Organic SEO to drive traffic.  Once a user gets to the site, the most common action is to fill out a form.

          I have Auto Tagging enabled in Adwords so all PPC clicks have "gclid" in the url.

          I am also grabbing the Google Cookie and parsing it out to determine if the visitor is PPC or Organic.

          So I have an if statement in my form code to pass PPC vs organic through the form for tracking purposes:

          $url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];

          if (false !== strpos($url,'gclid'))  { ?>

          Essentially this is saying:

          If gclid is in the url, or if the cookie contains PPC 
          set the Web field as PPC Else
          Set it as Organic.

          this is working about 80% of the time. I am trying to raise the accuracy.  any ideas where I might be missing some data?

          thanks

          1 Reply Last reply Reply Quote 0
          • StreamlineMetrics
            StreamlineMetrics last edited by

            You say that your solution works 80% of the time - how do you know that? Do you have any ideas for why it wouldn't work for the other 20% of the time? Here are some of my thoughts -

            1. Not all of your leads will likely be generated by Google (organic or paid). Are you taking into account that visitors who come from a link on another website and fill out the form should not be tracked as Organic or PPC? It looks like your script is determining every visitor who doesn't come from AdWords should be counted as Organic, and that may be what is causing the discrepancies in your data.

            2. What about visitors who come from a search on Yahoo or Bing? Are they being tracked as Organic in your script?

            3. It's possible that some of your visitors have cookies and/or Google Analytics disabled so I can see that messing up your data if you are checking the GA cookie.

            I can definitely understand the value in passing the source info along through your form, but it looks like your script might need a little finetuning to track more accurately. I have actually ran into similar issues before with trying to pass the source of the lead through the end of the sales funnel so I can determine which traffic sources/keywords generated conversions that resulted in sales without needing a full blown CRM and developed a free tool called Convertable which does exactly what I was looking for. If you are still having problems with your script, feel free to give it a try.

            1 Reply Last reply Reply Quote 0
            • BTeubner
              BTeubner Subscriber last edited by

              TJ,

              Why send the source info through the form? Are you passing it your CRM or something?

              I typically just utilize Google Analytics to track the source. You can set a custom variable with the lead's name into GA if you want to match up leads.The avantage is that you can also track other lead sources like organic, social, etc. in addition to PPC.

              Of course, if you're doing really high volume, this isn't real efficient.

              -Rick

              1 Reply Last reply Reply Quote 0
              • 1 / 1
              • First post
                Last post

              Browse Questions

              Explore more categories

              • Moz Tools

                Chat with the community about the Moz tools.

              • SEO Tactics

                Discuss the SEO process with fellow marketers

              • Community

                Discuss industry events, jobs, and news!

              • Digital Marketing

                Chat about tactics outside of SEO

              • Research & Trends

                Dive into research and trends in the search industry.

              • Support

                Connect on product support and feature requests.

              • See all categories

              Related Questions

              • plumrocket1

                Can Very High Impressions and 0% Organic CTR Impact our SEO Rankings?

                I have a very strange feeling that someone bad is trying to hurt our company, but maybe I am wrong. Let me explain. In the last two month, we have seen a very significant drop in sales on our website, but we couldn't figure out why. We have looked at different metrics (Google Search Console, Moz, Google Analytics), but everything looked alright. We had 10% loss in traffic, but we didnt believe at the time that it could be the main issue. Just yesterday we've discovered the following (please see attached screenshot😞 On August 18, 2018 Google launched Search Update On the same date, we had a jump in Organic Search Impressions for one particular keyword, which we never tracked before: "free facebook login". Majority of all impressions (233,000 out of 258,000) were from Philippines. Very low total number of clicks (50 clicks) led to 0% Average CTR for this keyword. Which in return, also lowered our global CTR by 1%. One month later we had 1000's of spam emails sent to our Helpdesk from two IP addresses, also from Philippines. We blocked them of course. It could be all coincidence. I dont know. But do you think that someone can use this fraudulent tactic to lower our CTR and drop our ranking and traffic? Can this influence our SEO in any way? It's also possible that someone is attacking Facebook and we just happen to be there, on the first page, for the same keyword. Should we try to eliminate our page for this keyword and see what happens? I've checked this article from Rand Fishkin - https://a-moz.groupbuyseo.org/blog/impact-of-queries-and-clicks-on-googles-rankings-whiteboard-friday and it seems that CTR is an important factor. However the article is from 2015 and maybe it's no longer relevant. What should we do? Thanks! G86Nge4

                Conversion Rate Optimization | | plumrocket1
                1
              • Jonathan.Smith

                Will hreflang indication help single language site?

                I have read a few articles that say indicating a language per webpage with hreflang really only helps sites that use multiple languages. Although my site is only in English, I see that it is ranking for a few foreign language keywords in Google Search Console (not sure exact traffic but roughly 15% of visitors from Search are non English preferred). My thought is that indicating language will help my single-language site because it will weed out the non-english speakers who are probably bouncing from the site. Overall I am thinking it might improve the quality of my search traffic. Do you think my logic is sound, or is adding hreflang not beneficial to my site? All feedback welcomed. Thanks!

                Conversion Rate Optimization | | Jonathan.Smith
                0
              • BeckyKey

                Grid view vs. List view

                Hi I work on an ecommerce site and wondered if anyone had tested grid view vs. list view on product listing pages? We use list view, but I think grid view might work better. Thanks

                Conversion Rate Optimization | | BeckyKey
                0
              • ColeLusby

                Has anyone ever used Adwords' Forwarding Numbers as a Call Tracking Service?

                Hi, I was taking over a client's Adwords account from a previous agency. It appears the former agency added the Google Forwarding Number (for call tracking on call extensions) and added it to the client's website. Therefore, if anyone calls that number from the website, it would register within Adwords (just not as a conversion but as a click under "call extensions") The problem: you can't filter by phone number (the same number calling +1 would indicate spam) you can filter by device (so tablet / computer) can be considered spam generally. Questions: Anyone ever used this before? Your thoughts? Does anyone know if there is spam coming from mobile devices now-a-days? Please tell me what I'm missing. Any advice / anyone else seen this / done this? Thanks Moz Community, Cole

                Conversion Rate Optimization | | ColeLusby
                0
              • Ideas-Money-Art

                Is it possible to set a Goal conversion tracking from a subdomain to a root domain?

                Hi Mozzers, Here is an issue I am going through: I have a root domain(www.example.com) that is the core website where you are able to schedule a service I have a subdomain (sub.example.om) that is part of content strategy offering free tips and follows a different branding strategy. There are internal links from sub to root domain I have a GA subdomain tracking code installed on every page for both domains I would love to set goal tracking on GA for visitors coming to my subdomain, then going to root domain and then schedule a sevices? Is  this possible? If it is, can someone show me a How To because I tried it anddidn't work? Thanks mozzers!

                Conversion Rate Optimization | | Ideas-Money-Art
                0
              • marcandre

                How to track full path of website visitors until conversion, not just landing page?

                hi, This is my first question in the forums and I'm looking forward to be part of a great SEO community. I was wondering ow to track full path of website visitors until conversion, not just landing page? I've been using Wordpress jetpack site stats for while, which shows great data like keywords used in google, landing page etc. But I would like to have access to the full path for each separate visitors (including their IP address and country is possible) to improve my website and conversions. Example: step 1: Visitor X types "seo" on Google step 2: visitor lands on my homepage step 3: visitor visits to order page and buys Is there such tool available as a Wordpress plugin? Or do I have to use Google analytics for this? thank you for your help, Marc

                Conversion Rate Optimization | | marcandre
                0
              • G2W

                How to find average organic traffic growth rate for ecommerce startup?

                Happy Friday Everyone, I have a quick question: I am in the process of crunching some numbers to try and figure out an organic traffic forecast for a client. One of the crucial metrics I can't seem to figure out is traffic rate of growth over the next year or so. The reason this is complicated for me is that I have only ever done this sort of thing for an established business before, and had plenty of past organic traffic data to work with. What I am looking for is a source that could give me a reasonable idea of what kind of growth rates I might expect for a startup with practically no data; I would be perfectly happy with a national average for online retail startups. Any help would be greatly appreciated. Thanks!

                Conversion Rate Optimization | | G2W
                0
              • LinkMoser

                How can I track the traffic source/keyword of form submissions?

                I'm using Google Analytics on www.nhfinehomes.com and would like to track the source of leads submitted via form submissions. Ideally, I could track if the lead originated from organic search (and what keyword phrase), PPC, referral links, etc. Is this possible with Google Analytics and if so, can anyone point to some documentation on how to do this or better yet someone who can help me set this up? This site is running ASP.NET and uses JQuery so there is not a 'traditional' thank you page that I can reference. I'm not a programmer and do not pretend to be one! Thanks in advance. Link

                Conversion Rate Optimization | | LinkMoser
                0

              Get started with Moz Pro!

              Unlock the power of advanced SEO tools and data-driven insights.

              Start my free trial
              Products
              • Moz Pro
              • Moz Local
              • Moz API
              • Moz Data
              • STAT
              • Product Updates
              Moz Solutions
              • SMB Solutions
              • Agency Solutions
              • Enterprise Solutions
              • Digital Marketers
              Free SEO Tools
              • Domain Authority Checker
              • Link Explorer
              • Keyword Explorer
              • Competitive Research
              • Brand Authority Checker
              • Local Citation Checker
              • MozBar Extension
              • MozCast
              Resources
              • Blog
              • SEO Learning Center
              • Help Hub
              • Beginner's Guide to SEO
              • How-to Guides
              • Moz Academy
              • API Docs
              About Moz
              • About
              • Team
              • Careers
              • Contact
              Why Moz
              • Case Studies
              • Testimonials
              Get Involved
              • Become an Affiliate
              • MozCon
              • Webinars
              • Practical Marketer Series
              • MozPod
              Connect with us

              Contact the Help team

              Join our newsletter
              Moz logo
              © 2021 - 2025 SEOMoz, Inc., a Ziff Davis company. All rights reserved. Moz is a registered trademark of SEOMoz, Inc.
              • Accessibility
              • Terms of Use
              • Privacy

              Looks like your connection to Moz was lost, please wait while we try to reconnect.