gtag Purchase Event ignored on Google Analytics

文章推薦指數: 80 %
投票人數:10人

I'm succesfully tracking some events with gtag.js on Google Analytics, with the exception of "purchase" event. Using GTM/GA chrome plugin ... Home Public Questions Tags Users Companies Collectives ExploreCollectives Teams StackOverflowforTeams –Startcollaboratingandsharingorganizationalknowledge. CreateafreeTeam WhyTeams? Teams CreatefreeTeam Collectives™onStackOverflow Findcentralized,trustedcontentandcollaboratearoundthetechnologiesyouusemost. Learnmore Teams Q&Aforwork Connectandshareknowledgewithinasinglelocationthatisstructuredandeasytosearch. Learnmore gtagPurchaseEventignoredonGoogleAnalytics AskQuestion Asked 1year,8monthsago Modified 5monthsago Viewed 3ktimes 4 I'msuccesfullytrackingsomeeventswithgtag.jsonGoogleAnalytics,withtheexceptionof"purchase"event. UsingGTM/GAchromepluginI'vecheckedthatalleventsaretrackedcorrectly,"purchase"included. Theproblemisthat"purchase"isnottrackedonGoogleAnalytics:alltheothersaretracked("begin_checkout","add_to_cart"...). gtag("event","purchase",{ affiliation:"Googleonlinestore", coupon:"SUMMER_DISCOUNT", currency:"USD", shipping:5.55, tax:3.33, transaction_id:"T_1", value:28.86, items:[ { id:"P12345", name:"AndroidWarholT-Shirt", coupon:"P12345_coupon", list_name:"SearchResults", brand:"Google", category:"Apparel/T-Shirts", variant:"Black", list_position:3, quantity:1, price:9.99 }, { id:"P12346", name:"FlamechallengeTShirt", coupon:"P12346_coupon", list_name:"SearchResults", brand:"MyBrand", category:"Apparel/T-Shirts", variant:"Red", list_position:5, quantity:1, price:9.99 } ] }); Theconversion/e-commercegraphisflatasyoucansee.WhatamImissing? Update I'vecreatedaGAnalyticstestaccountandthepurchaseeventistracked.Onthescreenshot'saccount,maybe,someconfigurationismissing:couldbe? eventsgoogle-analyticsevent-trackinggtag.js Share Improvethisquestion Follow editedNov13,2020at11:43 MassimoVariolo askedNov2,2020at15:16 MassimoVarioloMassimoVariolo 4,51966goldbadges3737silverbadges6262bronzebadges 0 Addacomment  |  3Answers 3 Sortedby: Resettodefault Highestscore(default) Trending(recentvotescountmore) Datemodified(newestfirst) Datecreated(oldestfirst) 2 Ihadtheexactsameproblem. SomethingsInoticedthatcouldexplainut. DateRange:MaybeyoumissedthefactthatthedaterangeinyourAnalytics reportissetfor26Oct-1Nov,whileyoureventsweretriggered on2Nov? WrongValueField:Ifthecalculationofthevaluefieldiswrong(doesnotequaltotalofallitemsplusshippingfieldplustaxfield)Googlemightignoretheevent. ProcessingTime:Evenwhenthe"Real-Time"viewshowstheevents,theyare notalwaysincludedinotherreportsuntilsometimelater. Share Improvethisanswer Follow answeredDec30,2020at15:11 ipodppodipodppod 10255bronzebadges 1 Sometimes,Isendeventswherethetotalofallitemsisnotequaltothevaluewithtaxandshippingbecausethereisacouponcodeapplied(thecouponfieldisjustastringsothereisnowayforGoogletovalidatethetotal).Nevertheless,theeventsarevalidsinceIseetheminGoogleAnalytics. – pmrotule Feb24at7:24 Addacomment  |  1 InterestinglyI'mseeingsomethingsimilaronmytestsandI'musingsomesamplecodeoffgoogle: window.dataLayer=window.dataLayer||[]; functiongtag(){dataLayer.push(arguments);} gtag('js',newDate()); gtag('config','UA-XXXXXX-Y'); gtag('event','purchase',{ "transaction_id":"24.031608523954162_C", "affiliation":"Googleonlinestore_C", "value":0.01, "currency":"GBP", "tax":1.24, "shipping":0, "items":[ { "id":"P12345C", "name":"AndroidWarholT-Shirt", "list_name":"SearchResults", "brand":"Google", "category":"Apparel/T-Shirts", "variant":"Black", "list_position":1, "quantity":2, "price":'0.01' }, { "id":"P67890C", "name":"FlamechallengeTShirt", "list_name":"SearchResults", "brand":"MyBrand", "category":"Apparel/T-Shirts", "variant":"Red", "list_position":2, "quantity":1, "price":'3.0' } ] }); WeusenoncebecauseweareusingCSPandbelieveallCSPurlsaresetcorrectlyintheCSP. Anyinsightwouldbeagreathelpastowhythiswouldnotbeloggingthistransactiondata. Share Improvethisanswer Follow answeredNov12,2020at17:08 StuartPalmerStuartPalmer 16111goldbadge11silverbadge1010bronzebadges 2 2 Notethatthevalueparameterofyourpurchaseeventissmallerthanthetotalofalltheitems.Frommyexperiencegooglemightdecidetoignoretheeventbecauseofthat. – ipodppod Dec30,2020at15:14 Notethatifyouspecifythecouponfield,thetotalcanbesmallerthatthetotalofallitems.It'snotthecaseinyourcodesnippetthough,butthepriceisastring,itshouldbeaninteger(price:3insteadofprice:'3.0'). – pmrotule Feb24at7:28 Addacomment  |  -1 ForItemData:,idshouldbethetransactionID. Seehere: https://developers.google.com/analytics/devguides/collection/analyticsjs/ecommerce#item Share Improvethisanswer Follow editedJan29at14:21 ouflak 2,4281010goldbadges4040silverbadges4848bronzebadges answeredJan28at11:18 EranEran 2944bronzebadges 1 Thelinkyouprovidedisthedocumentationforanalytics.jsandnotgtag.js.Inthegtagdocumentation,theidisdescribedasTheproductIDorSKU:developers.google.com/analytics/devguides/collection/gtagjs/… – pmrotule Feb24at7:19 Addacomment  |  YourAnswer ThanksforcontributingananswertoStackOverflow!Pleasebesuretoanswerthequestion.Providedetailsandshareyourresearch!Butavoid…Askingforhelp,clarification,orrespondingtootheranswers.Makingstatementsbasedonopinion;backthemupwithreferencesorpersonalexperience.Tolearnmore,seeourtipsonwritinggreatanswers. Draftsaved Draftdiscarded Signuporlogin SignupusingGoogle SignupusingFacebook SignupusingEmailandPassword Submit Postasaguest Name Email Required,butnevershown PostYourAnswer Discard Byclicking“PostYourAnswer”,youagreetoourtermsofservice,privacypolicyandcookiepolicy Nottheansweryou'relookingfor?Browseotherquestionstaggedeventsgoogle-analyticsevent-trackinggtag.jsoraskyourownquestion. TheOverflowBlog DesignpatternsforasynchronousAPIcommunication GameBoyemulators,PowerPointdevelopers,andtheenduringappealofPokémon... FeaturedonMeta AnnouncingtheStacksEditorBetarelease! Trending:Anewanswersortingoption The[options]tagisbeingburninated Related 1675 Eventbindingondynamicallycreatedelements? 729 jQueryEventKeypress:Whichkeywaspressed? 1008 HowtofindeventlistenersonaDOMnodeinJavaScriptorindebugging? 308 Canyoutestgoogleanalyticsonalocalhostaddress? 560 Nomatchingclientfoundforpackagename(GoogleAnalytics)-multipleproductFlavors&buildTypes 19 GoogleAnalyticsGtagMultipleAnalyticsAccountTrackingIDs 3 Googleanalyticseventtracking(gtag)notdisplaying 0 gtageventpurchasecurrencyignored,isalwaysUSD 0 ConvertingGTMeventtogtageventGoogleAnalytics HotNetworkQuestions Isthereanycriminalimplicationoffalsifyingdocumentsdemandedbyaprivateparty? DataImbalance:whatwouldbeanidealnumber(ratio)ofnewlyaddedclass'sdata? IsthereapoliticalfactioninRussiapubliclyadvocatingforanimmediateceasefire? WhydoesthecapacitancevalueofanMLCC(capacitor)increaseafterheating? Howwouldelectricweaponsusedbymermaidsfunction,iffeasible? TechniquesforCompensatingInductorSRF IntheUS,howdowemaketaxwithholdinglessifwelostourjobforafewmonths? WhydidthegatebeforeMinasTirithbreaksoveryeasily? WhenaddinganewdisktoRAID1,whydoesitsyncunusedspace? CannotGetOptimalSolutionwith16nodesofVRPwithTimeWindows Whatarethepurposeoftheextradiodesinthispeakdetectorcircuit(LM1815)? HowdoesatailplaneprovidedownforceifithasthesameAoAasthemainwing? Parallelizetwoindependentloops Athoughtexperimentaboutneutrinos Whydoeshashingapasswordresultindifferenthashes,eachtime? Shortstoryaboutthecreationofaspellthatcreatesacopyofaspecificwoman GeometryNodes:Howtoswap/changeamaterialofaspecificmaterialslot? Ifacreature'sbestfoodsourcewas4,000feetaboveit,andonlyrarelyfellfromthatheight,howwoulditevolvetoeatthatfood? Skippingacalculustopic(squeezetheorem) HowcanIuseparentheseswhentherearemathparenthesesinside? Geonodes,useimagetexture Is"OccupationJapan"idiomatic?(insteadofoccupationofJapan,occupiedJapanorOccupation-eraJapan) Howtohelpmyplayerstrackgoldinmultiplecurrencies? Whyhadclimatechangenotbeenprovenbeyonddoubtforsolong? morehotquestions Questionfeed SubscribetoRSS Questionfeed TosubscribetothisRSSfeed,copyandpastethisURLintoyourRSSreader. Yourprivacy Byclicking“Acceptallcookies”,youagreeStackExchangecanstorecookiesonyourdeviceanddiscloseinformationinaccordancewithourCookiePolicy. Acceptallcookies Customizesettings  



請為這篇文章評分?