skip to Main Content

I have an eCommerce store in Magento (if that matters). I have a goal setup as “Buy tickets”, Goal type as “Destination, and here is the setup:

Google Analytics Goal Setup

The funnel seems to be “broken”, as obviously doesn’t seem to be working right. I’m not the most advanced user, and still learning, so not sure what the problem is! Hope someone can help, thank you.

Google Analytics Goal Funnel

2

Answers


  1. Your regular expression for Step 2 also matches Step 3 and 4. This causes inaccuracies.

    Try the below for your regex pattern instead. Unfortunately Google Analytics doesn’t support negative lookaheads in regular expressions – so this is more convoluted than it should be.

    Step 2: /checkout/[A-Za-z0-9-.]+

    This assumes the only special characters that could appear in your URL are - and .. Modify to add more if needed (except for #).

    Login or Signup to reply.
  2. Replace Step 1 with Regex to allow all formats of homepage

    ^/$|^/?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search