[ad_1]
After launching the wizard following the instructions they provide, the site is not linked in google analytics as it says “no tag installed”, however it has been done already. Do you need to purchase a paid version of monster insights so that it works? I
[ad_2]
I don’t think you need to get the paid version, the free version should work well.
But at the same time, there is no need for the extra plugin.
[install GA4 without a plugin and keep your WP site bloat free](https://www.analyticsmania.com/post/how-to-install-google-analytics-4-with-google-tag-manager/#gtag)
You can use this [plugin](https://wordpress.org/plugins/head-footer-code/) to up the code in the head if your theme doesn’t have the option
Or this the [plugin](https://wordpress.org/plugins/easy-code-manager/) and use this snippet code:
function add_ga4_to_header() {
?>
<!– Global site tag (gtag.js) – Google Analytics –>
<script async src=”https://www.googletagmanager.com/gtag/js?id=YOUR_GA4_MEASUREMENT_ID”></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag(‘js’, new Date());
gtag(‘config’, ‘YOUR_GA4_MEASUREMENT_ID’);
</script>
<?php
}
add_action(‘wp_head’, ‘add_ga4_to_header’);
Replace YOUR_GA4_MEASUREMENT_ID with your actual GA4 Measurement ID.