Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 1d3c15c

Browse files
committed
0.16.9 Release
1 parent d074179 commit 1d3c15c

File tree

3 files changed

+32
-31
lines changed

3 files changed

+32
-31
lines changed

app/code/community/Fooman/GoogleAnalyticsPlus/Block/TagManager.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function getTagManagerSnippet()
4343
{
4444
return Mage::getStoreConfig('google/analyticsplus_tagmanager/snippet');
4545
}
46-
46+
4747

4848
/**
4949
* get order from the last quote id
@@ -52,14 +52,14 @@ public function getTagManagerSnippet()
5252
*/
5353
protected function _getOrder()
5454
{
55-
56-
$quoteId = Mage::getSingleton('checkout/session')->getLastQuoteId();
57-
if ($quoteId) {
58-
$this->_order = Mage::getModel('sales/order')->loadByAttribute('quote_id', $quoteId);
59-
} else {
60-
$this->_order = false;
61-
}
62-
55+
56+
$quoteId = Mage::getSingleton('checkout/session')->getLastQuoteId();
57+
if ($quoteId) {
58+
$this->_order = Mage::getModel('sales/order')->loadByAttribute('quote_id', $quoteId);
59+
} else {
60+
$this->_order = false;
61+
}
62+
6363
return $this->_order;
6464
}
6565
}

app/code/community/Fooman/GoogleAnalyticsPlus/etc/config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<config>
33
<modules>
44
<Fooman_GoogleAnalyticsPlus>
5-
<version>0.16.8</version>
5+
<version>0.16.9</version>
66
</Fooman_GoogleAnalyticsPlus>
77
</modules>
88

Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
1-
<?php /* @var $this Fooman_GoogleAnalyticsPlus_Block_TagManager */?>
1+
<?php /* @var $this Fooman_GoogleAnalyticsPlus_Block_TagManager */ ?>
22
<?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) . "'
2021
}";
21-
}?>
22+
} ?>
23+
2224

23-
2425
<script>
2526
/* <![CDATA[ */
2627
dataLayer = [<?php echo $dataLayerDetails?>];
2728
/* ]]> */
2829
</script>
2930
<?php echo $this->getTagManagerSnippet(); ?>
30-
<?php endif; ?>
31+
<?php endif; ?>

0 commit comments

Comments
 (0)