-
Notifications
You must be signed in to change notification settings - Fork 43
Weird issue - tag assistant telling me No HTTP response detected #59
Comments
There is a limit on the length of data you can send to google analytics. |
Hi, thank you Im also wondering why all this data is sent to GA on just a simple category page load. |
The data is sent from the hookFooter action I limited the sent data to 10 items...It's a poor workaround but keeps the page tracked on analytics, something like that in ganalytics.php: public function addProductImpression($products)
{
if (!is_array($products))
return;
$js = '';
$count = 0;
foreach ($products as $product) {
$count++;
$js .= 'MBG.add('.Tools::jsonEncode($product).",'',true);";
if ($count === 10) break;
}
return $js;
} |
Yes |
I have this issue too... the above did not work for me... |
Hello, I have a new dev version of the module to add the ability to limit data sent. Anyone interested in it ? |
Could you try with the new release ? It should limit data sent. |
Hi there
I been trying for hours to solve a issue
according to the tag assistant, some of my pages on http://www.dyrefoder.dk is not correctly set up
It tells me: No HTTP response detected
I tried to find a pattern and first I thought it was special chars like æøå that messed something up, but nope. That wasnt the case.
My latest discovery is that it might be related to the number of shown
products shown on the page. And then again im not sure, cause on one page (http://www.dyrefoder.dk/produkter/hund/godbidder) the issue starts when i have more than 12 products, and on another page (http://www.dyrefoder.dk/produkter/hund/hundefoder) i need 13 products to recreate the issue. I wonder whats really the issue an I would appresiate some help, thanks.
Thanks in advance
PS 1.6.0.9
latest updated ganalytics module installed
The text was updated successfully, but these errors were encountered: