SEO, AdWords, affiliates, advertising, and promotions
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
When are Spotify going to allow Basic plans to install Measurement ID from Google Analytics. I can't edit theme.liquid on my plan
Hey @WhoDunnit
You should be able to edit the the theme.liquid. Check your access level.
They dont have a native integration yet. In order to install GA4, please do the following:
1. Find G-Example in the code below and insert the Measurement ID of your GA4.
2. Place this code in the <head> section of your theme.liquid.
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EXAMPLE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag()
gtag('js', new Date());
gtag('config', 'G-EXAMPLE');
</script>
Let me know if you have any questions.