Not Tracking in Statistics
-
Hi, I think I’ve set this up OK but I’m not seeing any statistics recorded for the split test.
Can you have a look at the page please – the code looks to be there in the source:
<script type=”text/javascript”>
window.rocketSplitTest = { ‘config’: { ‘page’: { ‘base’: { ‘protocol’: ‘https://’, ‘host’: ‘www.bhwt.org.uk’, ‘path’: ‘/’ } } } };
window.rocketSplitTest.cookie = { };
window.rocketSplitTest.cookie.create = function (name, value, days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
document.cookie = name + “=” + value + “; expires=” + date.toGMTString() + “; path=” + window.rocketSplitTest.config.page.base.path;
};
window.rocketSplitTest.cookie.read = function (name) {
var parts = (“; ” + document.cookie).split(“; ” + name + “=”);
return (parts.length === 2) ? parts.pop().split(“;”).shift() : null;
};
</script>The page I need help with: [log in to see the link]
- The topic ‘Not Tracking in Statistics’ is closed to new replies.