|
1 | 1 | <?php if ($this->shouldInclude()): ?>
|
| 2 | + <?php $altUniversal = $this->getAlternativeUniversalAccount(); ?> |
2 | 3 | <!-- Google Analytics -->
|
3 | 4 | <script>
|
4 | 5 | (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
7 | 8 | })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
8 | 9 |
|
9 | 10 | ga('create', '<?php echo $this->getUniversalAccount(); ?>',<?php echo $this->getUniversalParams(); ?>);
|
| 11 | + <?php if ($altUniversal):?> |
| 12 | + ga('create', '<?php echo $altUniversal; ?>',<?php echo $this->getUniversalParams(true); ?>); |
| 13 | + <?php endif;?> |
| 14 | + |
10 | 15 | <?php if($this->getUniversalAnonymise()):?>
|
11 | 16 | ga('set', 'anonymizeIp', true);
|
| 17 | + <?php if ($altUniversal):?> |
| 18 | + ga('<?php echo Fooman_GoogleAnalyticsPlus_Block_Universal::TRACKER_TWO_NAME?>.set', 'anonymizeIp', true); |
| 19 | + <?php endif;?> |
12 | 20 | <?php endif;?>
|
13 | 21 | <?php if($this->getUniversalDisplayAdvertising()):?>
|
14 | 22 | ga('require', 'displayfeatures'<?php if($this->getUniversalDisplayAdvertisingCookieName()):?>, undefined, { cookieName: '<?php echo $this->getUniversalDisplayAdvertisingCookieName(); ?>' }<?php endif; ?>);
|
| 23 | + <?php if ($altUniversal):?> |
| 24 | + ga('<?php echo Fooman_GoogleAnalyticsPlus_Block_Universal::TRACKER_TWO_NAME?>.require', 'displayfeatures'<?php if($this->getUniversalDisplayAdvertisingCookieName()):?>, undefined, { cookieName: '<?php echo $this->getUniversalDisplayAdvertisingCookieName(); ?>' }<?php endif; ?>); |
| 25 | + <?php endif;?> |
15 | 26 | <?php endif;?>
|
16 | 27 | ga('send', 'pageview', '<?php echo $this->getPageName(); ?>');
|
| 28 | + <?php if ($altUniversal):?> |
| 29 | + ga('<?php echo Fooman_GoogleAnalyticsPlus_Block_Universal::TRACKER_TWO_NAME?>.send', 'pageview', '<?php echo $this->getPageName(); ?>'); |
| 30 | + <?php endif;?> |
17 | 31 |
|
18 | 32 | </script>
|
19 | 33 | <?php if($this->isSuccessPage()):?>
|
20 | 34 | <?php $order = $this->_getOrder();?>
|
21 | 35 | <script>
|
22 | 36 | /* <![CDATA[ */
|
23 | 37 | ga('require', 'ecommerce', 'ecommerce.js');
|
| 38 | + <?php if ($altUniversal):?> |
| 39 | + ga('<?php echo Fooman_GoogleAnalyticsPlus_Block_Universal::TRACKER_TWO_NAME?>.require', 'ecommerce', 'ecommerce.js'); |
| 40 | + <?php endif;?> |
| 41 | + |
| 42 | + <?php $transactionDetails = "{ |
| 43 | + 'id': '".$this->jsQuoteEscape($order->getIncrementId()) ."', |
| 44 | + 'affiliation': '". $this->jsQuoteEscape(Mage::app()->getStore()->getName()) ."', |
| 45 | + 'revenue': '". Mage::helper('googleanalyticsplus')->convert($order, 'grand_total') ."', |
| 46 | + 'shipping': '". Mage::helper('googleanalyticsplus')->convert($order, 'shipping_amount') ."', |
| 47 | + 'tax': '". Mage::helper('googleanalyticsplus')->convert($order, 'tax_amount') ."', |
| 48 | + 'currency': '". Mage::helper('googleanalyticsplus')->getTrackingCurrency($order) ."' |
| 49 | + }"; |
| 50 | + ?> |
| 51 | + |
| 52 | + ga('ecommerce:addTransaction', <?php echo $transactionDetails?>); |
| 53 | + <?php if ($altUniversal):?> |
| 54 | + ga('<?php echo Fooman_GoogleAnalyticsPlus_Block_Universal::TRACKER_TWO_NAME?>.ecommerce:addTransaction', <?php echo $transactionDetails?>); |
| 55 | + <?php endif;?> |
| 56 | + |
24 | 57 |
|
25 |
| - ga('ecommerce:addTransaction', { |
26 |
| - 'id': '<?php echo $this->jsQuoteEscape($order->getIncrementId()) ?>', |
27 |
| - 'affiliation': '<?php echo $this->jsQuoteEscape(Mage::app()->getStore()->getName()) ?>', |
28 |
| - 'revenue': '<?php echo Mage::helper('googleanalyticsplus')->convert($order, 'grand_total') ?>', |
29 |
| - 'shipping': '<?php echo Mage::helper('googleanalyticsplus')->convert($order, 'shipping_amount') ?>', |
30 |
| - 'tax': '<?php echo Mage::helper('googleanalyticsplus')->convert($order, 'tax_amount') ?>', |
31 |
| - 'currency': '<?php echo Mage::helper('googleanalyticsplus')->getTrackingCurrency($order) ?>' |
32 |
| - }); |
33 | 58 | <?php foreach ($order->getAllVisibleItems() as $item):?>
|
34 |
| - ga('ecommerce:addItem', { |
35 |
| - 'id': '<?php echo $this->jsQuoteEscape($order->getIncrementId()) ?>', |
36 |
| - 'name': '<?php echo $this->jsQuoteEscape($item->getName())?>', |
37 |
| - 'sku': '<?php echo $this->jsQuoteEscape($item->getSku())?>', |
38 |
| - 'price': '<?php echo Mage::helper('googleanalyticsplus')->convert($item, 'price')?>', |
39 |
| - 'quantity': '<?php echo (int)$item->getQtyOrdered()?>', |
40 |
| - 'category': '<?php echo $this->jsQuoteEscape($this->getCategory($item))?>' |
41 |
| - }); |
| 59 | + |
| 60 | + <?php $itemDetails = "{ |
| 61 | + 'id': '".$this->jsQuoteEscape($order->getIncrementId()) ."', |
| 62 | + 'name': '". $this->jsQuoteEscape($item->getName()) ."', |
| 63 | + 'sku': '". $this->jsQuoteEscape($item->getSku()) ."', |
| 64 | + 'price': '". Mage::helper('googleanalyticsplus')->convert($item, 'price') ."', |
| 65 | + 'quantity': '". (int)$item->getQtyOrdered() ."', |
| 66 | + 'category': '". $this->jsQuoteEscape($this->getCategory($item)) ."' |
| 67 | + }"; |
| 68 | + ?> |
| 69 | + |
| 70 | + |
| 71 | + ga('ecommerce:addItem', <?php echo $itemDetails?>); |
| 72 | + <?php if ($altUniversal):?> |
| 73 | + ga('<?php echo Fooman_GoogleAnalyticsPlus_Block_Universal::TRACKER_TWO_NAME?>.ecommerce:addItem', <?php echo $itemDetails?>); |
| 74 | + <?php endif;?> |
42 | 75 | <?php endforeach;?>
|
43 | 76 | ga('ecommerce:send');
|
| 77 | + <?php if ($altUniversal):?> |
| 78 | + ga('<?php echo Fooman_GoogleAnalyticsPlus_Block_Universal::TRACKER_TWO_NAME?>.ecommerce:send'); |
| 79 | + <?php endif;?> |
44 | 80 | /* ]]> */
|
45 | 81 | </script>
|
46 | 82 | <?php endif; ?>
|
|
0 commit comments