Learn business growth with Google Analytics 4 Forums Google Analytics 4 Is there a way to deactivate Google Tag Manager in a single-page application when a user logs in?

  • Is there a way to deactivate Google Tag Manager in a single-page application when a user logs in?

    Posted by Nam on 10 November 2022 at 10:24 pm

    Hey there, I’ve got this React app and I’m looking to install Google Tag Manager on a few specific pages. Just a heads up though, I don’t really want it hanging around after a user logs in. Got any ideas on how I might disable or remove the GTM scripts following a specific user action? Currently, I’m using react-gtm-module to get Google Tag Manager up and running, but I’m all ears for other suggestions.

    Owen replied 12 months ago 3 Members · 2 Replies
  • 2 Replies
  • Pham

    Member
    20 February 2023 at 8:09 pm

    Absolutely, you can manage Google Tag Manager (GTM) in your React application so it only runs when and where you need it, without needing to remove or disable the actual GTM script.

    To unload a script like GTM, you’d typically manipulate the HTML and this can add unnecessary complexity to your app. Overriding script namespaces could lead to unpredictable behavior down the line.

    Instead, an efficient way forward is using GTM’s in-built blocking triggers. Use these to prevent certain tags from firing after a user logs in, which would make GTM behave as though it’s been unloaded, without actually doing so.

    This strategy aligns better with operations advisable in a production environment. QED – less mess, less stress!

  • Owen

    Member
    15 April 2023 at 9:24 pm

    In a React application, you normally initialize Google Tag Manager (GTM) in the main application component’s lifecycle method, making it available throughout your application. However, since your requirement is to disable or remove GTM scripts after a specific user action (like logging in), you’ll need a conditional approach.

    Unfortunately, the react-gtm-module doesn’t explicitly support unloading/removing GTM once initialized but there’s a way around. You can take advantage of the dynamic nature of javascript and React’s lifecycle methods to load/unload GTM based on the user’s authentication state.

    You’ll initialize the GTM in a specific component (or page) where you need it to track whatever information required. Once the user logins, you can change the state of the component triggering a re-render and making sure it does not initialize GTM again.

    Remember not to initialize GTM in the root component of your React app. Instead, initialize it at the page level components where you want the tag manager to track information. Initialize it in the componentDidMount or useEffect hook (if using functional components) based on some state (like user not logged in).

    As a reminder, this approach means you must handle the initialization and potential un-initialization of GTM on every specific page level component where tracking is required. Since the GTM script is loaded asynchronously, unloading it might not be instant and there may be some lag time, during which user activities might still be tracked.

    For that perfect solution removal of GTM would be a much more complex task because GTM, once loaded, creates various data layers and variables which are not easy to remove completely from the application runtime.

    In case, you want to prevent any tracking after the user logs in, you can use a different approach to prevent any GTM tags from firing after login, using the GTM admin console. You can set a unique cookie at user login, and in the GTM console, create a trigger that fires on all pages where the cookie is not set. This way, once a user logs in, the cookie is set and the trigger stops firing, effectively disabling tracking. This approach also has the advantage of simplicity and will help you manage all tracking behavior directly from the GTM console, without touching the code.

Log in to reply.