I think I see what the problem is:
Analytics expects a "." as a decimal separator so maybe that's what makes the call invalid
I think the code should be fixed to force the numeric output to be in java format.
I'll see if I can make a fix since I'm using a much older version.
this is what comes out:
_gaq.push(['_addTrans',
'1138',
'',
'9,9900',
'3,9900',
'test',
'',
'BE'
]);
_gaq.push(['_addItem',
'1138',
'',
'Ancienne Plaque Belge Modèle EU Voitures',
'Plaque ancien modèle',
'6,0000',
'1'
]);
Analytics expects a "." as a decimal separator so maybe that's what makes the call invalid
I think the code should be fixed to force the numeric output to be in java format.
I'll see if I can make a fix since I'm using a much older version.
this is what comes out:
_gaq.push(['_addTrans',
'1138',
'',
'9,9900',
'3,9900',
'test',
'',
'BE'
]);
_gaq.push(['_addItem',
'1138',
'',
'Ancienne Plaque Belge Modèle EU Voitures',
'Plaque ancien modèle',
'6,0000',
'1'
]);