javascript - Problems tracking Ecommerce with Google Analytics -


i trying add tracking tags web site. event , tracking rules working fine, not transactional ones.

        _gaq.push(['_addtrans', commande, '', tot_commande]);          foreach(...){         _gaq.push(['_additem', commande, code_form[i], nom_form[i], "", prix[i], nbr_part[i]]);            }         _gaq.push(['_tracktrans']); 

example var

_gaq.push(['_addtrans', 59, '',1772]); _gaq.push(['_additem', 59,k52171088-2013-20130612,déchets industriels...,1772,1]); 

i have no error in console, in google analytics dashboard found nothing concerning transactions.

thanks

always call _tracktrans after _trackpageview!

this prbleme ! explained here: google analytics doc

thanks


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -