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

Commit 9c9b575

Browse files
committed
0.14.11 Release
1 parent fcbad0c commit 9c9b575

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,15 +125,15 @@ public function getProdId()
125125
$quote = Mage::getSingleton('checkout/session')->getQuote();
126126
if ($quote) {
127127
foreach ($quote->getAllItems() as $item) {
128-
$products[] = $this->getConfiguredFeedId($item);
128+
$products[] = $this->getConfiguredFeedId($item->getProduct());
129129
}
130130
}
131131
return $this->getArrayReturnValue($products, '', true);
132132
break;
133133
case self::GA_PAGETYPE_PURCHASE:
134134
if ($this->_getOrder()) {
135135
foreach ($this->_getOrder()->getAllItems() as $item) {
136-
$products[] = $this->getConfiguredFeedId($item);
136+
$products[] = $this->getConfiguredFeedId($item->getProduct());
137137
}
138138
}
139139
return $this->getArrayReturnValue($products, '', true);
@@ -148,7 +148,7 @@ public function getProdId()
148148
*/
149149
public function getConfiguredFeedId ($product) {
150150
$idAttr = Mage::getStoreConfig('google/analyticsplus_dynremarketing/feed_product_id');
151-
$id = $product->getData($idAttr);
151+
$id = $product->getDataUsingMethod($idAttr);
152152
// quote if id is not numeric
153153
if (!ctype_digit($id)) {
154154
$id = "'$id'";

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.14.10</version>
5+
<version>0.14.11</version>
66
</Fooman_GoogleAnalyticsPlus>
77
</modules>
88

0 commit comments

Comments
 (0)