Google Analytics не показывает доход после добавления _gaq скрипт - PullRequest
0 голосов
/ 17 декабря 2018

Этот код добавляется на всю страницу (успех).

   
<script>
		_gaq.push(['_setAccount', 'UA-70414989-1']);
		_gaq.push(['_trackPageview']);
                _gaq.push(['_set', 'currencyCode', 'USD']);    
		 _gaq.push(['_addTrans',
			  'FH-12462',           // transaction ID - required
			  'FH GROUP', // affiliation or store name
			  '76.98',          // total - required; Shown as "Revenue" in the  Transactions report. Does not include Tax and Shipping.		
			  '0',           // tax
			  '0.00',          // shipping
			  'Secaucus',       // city
			  'New Jersey',     // state or province
			  'USA'             // country
		   ]);
		    		 _gaq.push(['_addItem',
		
			   'FH-12462',           // transaction ID - necessary to associate item with transaction
			   'FB071115-WOO',           // SKU/code - required
			   'blue seat cover',        // product name
			   'seat cover',   // category or variation
			   '46.99',          // unit price - required
			   '1'               // quantity - required
			]);
			 		 _gaq.push(['_addItem',
		
			   'FH-12462',           // transaction ID - necessary to associate item with transaction
			   'FB107102-WOO',           // SKU/code - required
			   'yellow seat cover',        // product name
			   'seat cover',   // category or variation
			   '29.99',          // unit price - required
			   '1'               // quantity - required
			]);
			  
			
			_gaq.push(['_trackTrans']);  
		   
	</script>

этот код получен от Google.

Я уже включил электронную торговлю и включил расширенные отчеты по электронной торговле.

и жду более 2недель.

И доход все еще не показывает.

Кто-нибудь знал, я что-то пропустил

...