Hello,
I have the following scenario:
The user has an on-site shopping cart where he adds products.
When the user clicks on checkout he is POSTed to a script that computes the buy link to an off-site shopping cart and redirects him with the Location header.
The user continues with the payment in the 3rd party website.
What I need is to track the user throughout this process.
_gaq.push(['_link', this.href]);
is for direct links and _gaq.push(['_linkByPost', this]);
is for form posts, but what should I use for header redirects?
(Having that Google Analytics updates in up to 48 hours I can't just use trial and error for this.)
Thank you, Alin