Implementer Documentation
Warning: All lead/financing forms can be used with test
data, however a transaction summary email will be generated and sent to the email address entered in the
form. Please use caution when filling out this field.
Google Analytics Cross Domain Tracking
Implementing cross domain tracking in Google Analytics is a fairly simple process that requires only minor changes made to your existing implementation scripts on your source page. To load the linker plugin use:
ga('require', 'linker');
Next you will need to define the domains that will be autolinked for the analytics session:
ga('linker:autolink', ['source.com', 'destination.com', 'dest2.com']);
Don't forget to add the {allowLinker: true} property to your create command on any page you wish to be able to receive an analytics session:
ga('create', 'UA-XXXX-Y', 'auto', {allowLinker: true});
Demonstration
Below is an example of the full script for the "example.com" domain, that is linking into Suite. You may also view the source of this webpage to see how we implemented it here.
