I have implemented a GA experiment with no redirect
<script type="text/javascript">_udn = 'example.com'; _uhash='off';</script>
<script type="text/javascript" src="//www.google-analytics.com/cx/api.js?experiment=ExperimentID"></script>
<script type="text/javascript">var chosenVariation = cxApi.chooseVariation();</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'AccountID']);
_gaq.push(['_setDomainName', 'example.com']);
_gaq.push(['_setAllowHash', false]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
I don't seem to get any visits. The instructions I followed are here experiments-client-side
I have followed the accepted answer at this similar question
Google still does not seem to be receiving my experiment visits.
I am wondering if it has something to do with using stats.g.doubleclick.net/dc.js instead of ga.js
Change the ga.src to ga.js experiments don't seem to work with stats.g.doubleclick.net/dc.js
was changed to
This solution is not optimal since it stops me from getting demographic data but I am at least getting experiment data now.