Hi,
This means that the Google Analytics didn't provide any source to HikaShop when it requested it.
This is done by the code:
window.hikashop.ready(function(){
if(!ga || typeof(ga) != "function")
return;
ga(function(tracker){
var clientId = tracker.get("clientId"),
elem = document.getElementById("hikashop_checkout_analytics_field_ga");
if(elem) elem.value = JSON.stringify({
uuid: tracker.get("clientId"),
ua: tracker.get("navigator.userAgent"),
cn: tracker.get("campaignName"),
cs: tracker.get("campaignSource"),
cm: tracker.get("campaignMedium"),
ck: tracker.get("campaignKeyword"),
cc: tracker.get("campaignContent"),
ci: tracker.get("campaignId"),
ul: tracker.get("language"),
});
});
});
which is added to the HikaShop checkout.
So to me, the issue is that GA system doesn't have the source to begin with.
How is the source provided to GA's javascript ?
Could you provide a link with the source so that we could look at what you have on your checkout ?