Reputation: 834
I'm trying to figure out how to setup Google analytics funnels to use page steps that have a dynamic tail. I have tried using the regex with a * for the wildcard but still not luck. Here is my configuration:
The result is an empty funnel:
Upvotes: 1
Views: 379
Reputation: 1674
-
is a special character in regular expressions
Try these instead:
/order\-complete
/travel\-blog/.*
Upvotes: 3