Torben Lundsgaard
Forum Replies Created
-
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataYou are welcome
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataIn my experience the new GMT notifications/warnings are buggy and most can be disregarded, which i woud do in your case
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataYou just need to make sure that the FB pixel fires before any other FB events. Du you have another plugin that or any other service/script that may be firing af FB event before the pixel is fired?
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataCheck in Tag Assistant if the FB pixel fires before any other FB tags
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataThe error “Uncaught ReferenceError: fbq is not defined” occurs when a Custom HTML tag or similar script attempts to execute fbq(‘track’, ‘something’); before the Facebook Pixel (fbq()) is initialized.
Are you using the GTM templates from GTM Kit?
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataAre you receivin data in Google Analytics? The warnings in Google Tag Manager are often wrong, of if you are receiving data in Google Analutics i would not worry
Your implementation looks normal. Are you not receiwing data in Google Analytics?
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataIt seems like you are not using the standard GTM Kit container implementation. Have you manually inserted the container script or are you using some kind of optimization plugun?
Please go to ‘GTM Kit > Help > Support > Share system data with the GTM Kit support team’ and enter the support ticket: FS870-44D4E
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Tag stopped sending dataPlease go to ‘GTM Kit > Help > Support > Share system data with the GTM Kit support team’ and enter the support ticket: FS869-870E9
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] DivisionByZeroErrorThe fix has been merged and will included in a release tomorrow. Thank you for bring this to my attention!
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] DivisionByZeroErrorThat does not make sense. The only way that you can have division by zero is if $item[‘quantity’] is zero. I’m not sure what the cause is when quantity is zero but i have the following check to prevent it in any case:
if ( isset( $item['quantity'] ) && $item['quantity'] > 0 ) {
$discount = $discount / $item['quantity'];
} else {
$discount = 0;
}It will be included in the next release
I have testet your sites and the datalayer is published as expected.
Have you tried any of the templates from GTM Kit? You can find them in ‘GTM Kit > GTM Templates’Please go to ‘GTM Kit > Help > Support > Share system data with the GTM Kit support team’ and enter the support ticket: FS864-2D737
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Missing cookie?GTM Kit does not set cookies. Google Tag Manager and the tags you fire set cookies.
I don’t know which cookie management solution you are using but it does seem like it is blocking all cookies.