This repository was archived by the owner on Feb 15, 2024. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -125,15 +125,15 @@ public function getProdId()
125
125
$ quote = Mage::getSingleton ('checkout/session ' )->getQuote ();
126
126
if ($ quote ) {
127
127
foreach ($ quote ->getAllItems () as $ item ) {
128
- $ products [] = $ this ->getConfiguredFeedId ($ item );
128
+ $ products [] = $ this ->getConfiguredFeedId ($ item-> getProduct () );
129
129
}
130
130
}
131
131
return $ this ->getArrayReturnValue ($ products , '' , true );
132
132
break ;
133
133
case self ::GA_PAGETYPE_PURCHASE :
134
134
if ($ this ->_getOrder ()) {
135
135
foreach ($ this ->_getOrder ()->getAllItems () as $ item ) {
136
- $ products [] = $ this ->getConfiguredFeedId ($ item );
136
+ $ products [] = $ this ->getConfiguredFeedId ($ item-> getProduct () );
137
137
}
138
138
}
139
139
return $ this ->getArrayReturnValue ($ products , '' , true );
@@ -148,7 +148,7 @@ public function getProdId()
148
148
*/
149
149
public function getConfiguredFeedId ($ product ) {
150
150
$ idAttr = Mage::getStoreConfig ('google/analyticsplus_dynremarketing/feed_product_id ' );
151
- $ id = $ product ->getData ($ idAttr );
151
+ $ id = $ product ->getDataUsingMethod ($ idAttr );
152
152
// quote if id is not numeric
153
153
if (!ctype_digit ($ id )) {
154
154
$ id = "' $ id' " ;
Original file line number Diff line number Diff line change 2
2
<config >
3
3
<modules >
4
4
<Fooman_GoogleAnalyticsPlus >
5
- <version >0.14.10 </version >
5
+ <version >0.14.11 </version >
6
6
</Fooman_GoogleAnalyticsPlus >
7
7
</modules >
8
8
You can’t perform that action at this time.
0 commit comments