Hello,
we have an e-shop with 3rd party shopping cart integrated.
We'd like to keep original referral for conversion that happens on 3rd party cart domain.
GA code in e-shop:
<script type='text/javascript'>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
ga('create', 'UA-33333-1', 'auto', {'allowLinker': true});
ga('require', 'linker');
ga('linker:autoLink', ['3rdPartyCart.com'],false, true );
ga('send', 'pageview');
</script>
GA code in 3rd party:
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//
www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-33333-1', 'auto', {'allowLinker': true});
ga('require', 'linker');
ga('linker:autoLink', ['
e-shop.com'], false, true );
ga('send', 'pageview');
</script>
Both cart and e-shop added to Referral Exclusion List in GA.
When visitor ads item to a cart and wants to buy it he / she must click "checkout" button, which is a form with submit method and it leads to 3rd party cart with SSL.
Any help would be appreciated, we really need to have this working...