funnelweb

Group/Sort by Date Year/Month, Partial Select with NHibernate (Projection? Transformation?)

喜欢而已 提交于 2019-12-11 05:16:16
问题 I'm building an ArchivesController for the open source asp.net MVC-3 blog platform FunnelWeb. We have an model called "Entry" which represents a blog entry which has a DateTime property called "Published" for when this entry was published. The purpose of the proposed ArchivesController is to create a wordpress-like archives link table that shows a descending list of all years and months for which we have posts with links to an archive index like '/archive/2011/9' and a count for the number of

Checkout ajax steps tracked with GTM ecommerce enhanced and dataLayer push

故事扮演 提交于 2019-12-06 16:09:07
问题 I'm wondering on how to tracks checkout and checkout steps events on google analytics. I've a checkout in a single page and each steps is called via ajax requests, so I've already add the "dataLayer.push" functionality for each steps, bringing of course the step number in it. Now I cannot catch anything on the funnel shown up on google analytics. The funnel I'm talking about is the "Checkout Behavior Analysis" inside the Conversion -> Ecommerce -> Shopping Analysis. The ecommerce code I'm

Checkout ajax steps tracked with GTM ecommerce enhanced and dataLayer push

自闭症网瘾萝莉.ら 提交于 2019-12-04 21:50:31
I'm wondering on how to tracks checkout and checkout steps events on google analytics. I've a checkout in a single page and each steps is called via ajax requests, so I've already add the "dataLayer.push" functionality for each steps, bringing of course the step number in it. Now I cannot catch anything on the funnel shown up on google analytics. The funnel I'm talking about is the "Checkout Behavior Analysis" inside the Conversion -> Ecommerce -> Shopping Analysis. The ecommerce code I'm using is the GTM one by pushing on dataLayer the checkout event when I'm loading the checkout page, and

Recreate GA Funnel on BigQuery

核能气质少年 提交于 2019-12-04 06:22:13
问题 I am trying to recreate the GA funnel (custom report on Google360) using BigQuery. The funnel on GA is using the unique count of events that happen on each page. I found this query online that is working for the most part: SELECT COUNT( s0.firstHit) AS Landing_Page, COUNT( s1.firstHit) AS Model_Selection from( SELECT s0.fullvisitorID, s0.firstHit, s1.firstHit, FROM ( # Begin Subquery #1 aka s0 SELECT fullvisitorID, MIN(hits.hitNumber) AS firstHit FROm [64269470.ga_sessions_20170720] WHERE

Recreate GA Funnel on BigQuery

房东的猫 提交于 2019-12-02 11:41:46
I am trying to recreate the GA funnel (custom report on Google360) using BigQuery. The funnel on GA is using the unique count of events that happen on each page. I found this query online that is working for the most part: SELECT COUNT( s0.firstHit) AS Landing_Page, COUNT( s1.firstHit) AS Model_Selection from( SELECT s0.fullvisitorID, s0.firstHit, s1.firstHit, FROM ( # Begin Subquery #1 aka s0 SELECT fullvisitorID, MIN(hits.hitNumber) AS firstHit FROm [64269470.ga_sessions_20170720] WHERE hits.eventInfo.eventAction in ('landing_page') AND totals.visits = 1 GROUP BY fullvisitorID ) s0 # End