I have a goal that can be reached from two pages on my website, for example, /page1 and /page2. I've made a regular expression for the first 'Required step' of the visualization funnel:
我的目标可以在我的网站上的两个页面中找到,例如/ page1和/ page2。我已经为可视化漏斗的第一个“必需步骤”制作了正则表达式:
^/(page1|page2)$
If i apply it as a filter in the Top Content report - it works fine. But there's nothing registered in the conversion funnel. I actually couldn't find any information about funnel steps - is it even possible to use regexp there just like it's done in the Goal page URL?
如果我在*内容报告中将其作为过滤器应用 - 它可以正常工作。但转换渠道中没有注册任何内容。我实际上找不到任何有关漏斗步骤的信息 - 是否可以像在目标网页网址中一样使用正则表达式?
3 个解决方案
#1
45
I've just been bitten by this. The URLs in the funnel steps are the same as the Goal Destination URL:
我刚被这个咬伤了。渠道步骤中的网址与目标目标网址相同:
https://support.google.com/analytics/answer/1116091?hl=en#matchTypes states
https://support.google.com/analytics/answer/1116091?hl=zh-CN#matchTypes状态
There are three diferent match types that define how Google Analytics identifies a URL for either a goal or a funnel. The match type that you select for your goal URL also applies to the URLs in the funnel, if you create one.
有三种不同的匹配类型可定义Google Analytics如何识别目标或渠道的网址。您为目标网址选择的匹配类型也适用于渠道中的网址(如果您创建的网址)。
So you can only have regex matches in your funnel steps, if you've chosen Regular Express in the Destination dropdown.
因此,如果您在“目标”下拉列表中选择了“正常快速”,则只能在渠道步骤中使用正则表达式匹配。
I had the same problem as you. I'd chosen "Equal to" in the dropdown for the destination URL but was using "Begins with" style matches in my funnel steps and therefore getting 0 entries showing in my funnel visualisation.
我遇到了和你一样的问题。我在目标网址的下拉列表中选择了“等于”,但在我的渠道步骤中使用了“开始”样式匹配,因此在我的渠道可视化中显示了0个条目。
#2
5
The following article states that the goal steps should be defined as regex as well.
以下文章指出,目标步骤也应定义为正则表达式。
http://www.analyticsmarket.com/blog/create-google-analytics-goals
http://www.analyticsmarket.com/blog/create-google-analytics-goals
"Each step should be defined as a regular expression as well."
“每个步骤也应该被定义为正则表达式。”
(almost at the very bottom of the page)
(几乎在页面的最底部)
Hope it helps
希望能帮助到你
#3
0
Try removing the first character: ^
.
尝试删除第一个字符:^。
#1
45
I've just been bitten by this. The URLs in the funnel steps are the same as the Goal Destination URL:
我刚被这个咬伤了。渠道步骤中的网址与目标目标网址相同:
https://support.google.com/analytics/answer/1116091?hl=en#matchTypes states
https://support.google.com/analytics/answer/1116091?hl=zh-CN#matchTypes状态
There are three diferent match types that define how Google Analytics identifies a URL for either a goal or a funnel. The match type that you select for your goal URL also applies to the URLs in the funnel, if you create one.
有三种不同的匹配类型可定义Google Analytics如何识别目标或渠道的网址。您为目标网址选择的匹配类型也适用于渠道中的网址(如果您创建的网址)。
So you can only have regex matches in your funnel steps, if you've chosen Regular Express in the Destination dropdown.
因此,如果您在“目标”下拉列表中选择了“正常快速”,则只能在渠道步骤中使用正则表达式匹配。
I had the same problem as you. I'd chosen "Equal to" in the dropdown for the destination URL but was using "Begins with" style matches in my funnel steps and therefore getting 0 entries showing in my funnel visualisation.
我遇到了和你一样的问题。我在目标网址的下拉列表中选择了“等于”,但在我的渠道步骤中使用了“开始”样式匹配,因此在我的渠道可视化中显示了0个条目。
#2
5
The following article states that the goal steps should be defined as regex as well.
以下文章指出,目标步骤也应定义为正则表达式。
http://www.analyticsmarket.com/blog/create-google-analytics-goals
http://www.analyticsmarket.com/blog/create-google-analytics-goals
"Each step should be defined as a regular expression as well."
“每个步骤也应该被定义为正则表达式。”
(almost at the very bottom of the page)
(几乎在页面的最底部)
Hope it helps
希望能帮助到你
#3
0
Try removing the first character: ^
.
尝试删除第一个字符:^。