Best Blackhat Forum

Full Version: Enable User-ID tracking in Google Analytics for Xenforo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: enable-user-id-tracking-in-google-analyt...foro-jpg.4]
This tutorial will help you enable tracking User-ID features in Google Analytics (default in Xenforo only tracking pageview and auto event by Google)

Step 1: Follow guide on https://support.google.com/analytics/ans...3666?hl=en to create new User-ID View on GA.
Step 2: Login your Xenforo Admin -> Appearance -> Templates -> find template name: google_analytics
Find
Code:
<xf:if is="$xf.options.googleAnalyticsAnonymize">
                'anonymize_ip': true,
</xf:if>
Add below:
Code:
<xf:if is="{$xf.visitor.user_id}">
                'user_id' : '{$xf.visitor.username}',
</xf:if>
Done tutorial, you can check result via view-source.

Reference
  1. https://support.google.com/analytics/answer/3123666?hl=en
  2. https://developers.google.com/analytics/devguides/collection/gtagjs/cookies-user-id
  3. https://xenforo.com/community/resources/conditional-statements-for-xenforo-2.5795/
Reference URL's