1
- <?php /* @var $this Fooman_GoogleAnalyticsPlus_Block_TagManager */ ?>
1
+ <?php /* @var $this Fooman_GoogleAnalyticsPlus_Block_TagManager */ ?>
2
2
<?php if ($ this ->shouldInclude ()): ?>
3
-
4
- <?php $ dataLayerDetails = "" ;
5
- if ($ this ->isSuccessPage ()) {
6
- $ order = $ this ->_getOrder ();
7
- $ shipping = Mage::helper ('googleanalyticsplus ' )->convert ($ order , 'shipping_amount ' );
8
- $ tax = Mage::helper ('googleanalyticsplus ' )->convert ($ order , 'tax_amount ' );
9
- $ total_revenue = Mage::helper ('googleanalyticsplus ' )->convert ($ order , 'grand_total ' );
10
- $ revenue = $ total_revenue - $ shipping - $ tax ;
11
-
12
- $ dataLayerDetails = "{
13
- 'conversion_order_id': ' " . $ this ->jsQuoteEscape ($ order ->getIncrementId ()) ."',
14
- 'conversion_store': ' " . $ this ->jsQuoteEscape (Mage::app ()->getStore ()->getName ()) ."',
15
- 'conversion_revenue_excl_taxship': ' " . $ revenue ."',
16
- 'conversion_revenue_shipping': ' " . $ shipping ."',
17
- 'conversion_revenue_tax': ' " . $ tax ."',
18
- 'conversion_revenue_revenue': ' " . $ total_revenue ."',
19
- 'conversion_currency': ' " . Mage::helper ('googleanalyticsplus ' )->getTrackingCurrency ($ order ) ."'
3
+
4
+ <?php $ dataLayerDetails = "" ;
5
+ if ($ this ->isSuccessPage ()) {
6
+ $ order = $ this ->_getOrder ();
7
+ $ shipping = Mage::helper ('googleanalyticsplus ' )->convert ($ order , 'shipping_amount ' );
8
+ $ tax = Mage::helper ('googleanalyticsplus ' )->convert ($ order , 'tax_amount ' );
9
+ $ total_revenue = Mage::helper ('googleanalyticsplus ' )->convert ($ order , 'grand_total ' );
10
+ $ revenue = $ total_revenue - $ shipping - $ tax ;
11
+
12
+ $ dataLayerDetails
13
+ = "{
14
+ 'conversion_order_id': ' " . $ this ->jsQuoteEscape ($ order ->getIncrementId ()) . "',
15
+ 'conversion_store': ' " . $ this ->jsQuoteEscape (Mage::app ()->getStore ()->getName ()) . "',
16
+ 'conversion_revenue_excl_taxship': ' " . $ revenue . "',
17
+ 'conversion_revenue_shipping': ' " . $ shipping . "',
18
+ 'conversion_revenue_tax': ' " . $ tax . "',
19
+ 'conversion_revenue_revenue': ' " . $ total_revenue . "',
20
+ 'conversion_currency': ' " . Mage::helper ('googleanalyticsplus ' )->getTrackingCurrency ($ order ) . "'
20
21
} " ;
21
- }?>
22
+ } ?>
23
+
22
24
23
-
24
25
<script>
25
26
/* <![CDATA[ */
26
27
dataLayer = [<?php echo $ dataLayerDetails?> ];
27
28
/* ]]> */
28
29
</script>
29
30
<?php echo $ this ->getTagManagerSnippet (); ?>
30
- <?php endif ; ?>
31
+ <?php endif ; ?>
0 commit comments