How to add Google Analytics Tracking ID to GitHub Pages

前端 未结 8 545
广开言路
广开言路 2020-12-07 06:36

Could be a simple question but I am full of doubts right now about adding Google Analytics Tracking ID to GitHub page.

I am using G

相关标签:
8条回答
  • 2020-12-07 07:28

    For anyone interested, if you are using Jekyll with GitHub pages, I just wrote a post showing how to correctly add Google Analytics Tracking ID to Jekyll.

    1. You will find your Universal Analytics tracking code under Admin > Property > Tracking Info > Tracking Code.

    2. Create a new file called analytics.html in the _includes folder found in your Jekyll website’s directory.

    3. Add Google Analytics Tracking ID code to analytics.html.

    4. Finally, open _layouts/head.html, and add {% include analytics.html %} just before the end </head> tag. Google recommends this placement to track all of the pages on your website correctly.

    0 讨论(0)
  • 2020-12-07 07:33

    Update: Added steps descriptions for others

    Solved it:
    had to include username.github.io (link that I want to track) in Google Analytics website section.

    you can check GitHub help page here


    enter image description here


    After that I was provided with an Tracker ID.


    Note: You can easily change or add more websites on Google Analytics page from your Google Analytics admin panel.


    Update 2: - Adding Google Analytics Tracking ID to Already created Github pages (As requested by @avi-aryan )

    1. Browse to your github pages branch - which would be something like -
      ( https://github.com/YourUserName/YourRepository/tree/gh-pages )
    2. Then edit index.html from listed files
    3. Now in within HEAD tag of index.html - paste your Google Analytics Tracking ID Script ( if have already signed up for Google analytics then you can browse it under admin and then tracking info tab )
    0 讨论(0)
提交回复
热议问题