Analytics doesn't information on 'time to goal conversion', however if your
customer can implement transaction tracking on any important conversion
pages it can be tracked in the e-commerce reports with these two reports:
Time to Transaction and Visits to Transaction (E-Commerce Analysis > Loyalty
& Latency > Time to Transaction/Visits to Transaction)
As for determining which page the visitor entered on, no, that's not
automatically provided in the reports. However, one could do so with the
custom visitor segmentation. Specifically, one might implement this on
landing pages:
<script type="text/javascript"
src="http://www.google-analytics
<script type="text/javascript">
_uacct="UA-xxxxxx-x";
urchinTracker();
if(document.cookie.indexOf("__utmv") == -1) {
__utmSetVar(document.location);
}
</script>
This will automatically tag visitors with their initial landing page, and
the modification would be included on every page in the site.
Then, the User-Defined report (Marketing Optimization > Visitor Segment
Performance > User-Defined) will display the G1/Visit, G2/Visit, T/Visits,
$/Visits information for each landing page on the site. Note that
implementing this is not something we can provide support for, it's a bit of
a hack.
Comments