- Issue created by @matthiasm11
- 🇧🇪Belgium matthiasm11
I chose option 2 since it also improves the performance of this module.
In Drupal 10.3, gtm.js was loaded before gtag.js. Together with the patch of
🐛
Default consent set too late
Active
, this ensured the default consent is set before anything tracking is triggered in GTM. Beware: GTM is already triggered by the gtag('js', new Date());
line in gtag.js.
In Drupal 10.4, gtag.js is loaded before gtm.js, causing tracking before the default consent is set. Probably because of https://www.drupal.org/node/3473558 → .
Possible solutions
1. Play with the weight of the google_tag/gtm
and google_tag/gtag
library. This is discouraged, it is better to use dependencies between libraries.
2. The google_tag/gtm
library is only loaded when there is a GTM id. However google_tag/gtag
and google_tag/gtag
are always loaded, even if there is no getDefaultTagId()
. This doesn't make sense, so I would wrap that in an empty check.
Active
2.0
Code
I chose option 2 since it also improves the performance of this module.