Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Struggling to get google analytics to work #265

Closed
Erica-Ryan opened this issue Sep 1, 2019 · 16 comments
Closed

Struggling to get google analytics to work #265

Erica-Ryan opened this issue Sep 1, 2019 · 16 comments
Labels
documentation Changes to documentation only (e.g., README, Guide, Wiki Pages, etc.) help wanted An issue that could be handled by anyone.
Milestone

Comments

@Erica-Ryan
Copy link

I added my tracking ID to the config, in double quotes. However, google analytics is not logging any hits even though I'm testing it.

I've looked at other documentation and I know the code google analytics is providing me is different from the google_universal.html file. But I'm not sure if that means it has actually changed or if they do the same thing and I just don't understand them. I also saw on other guides that my Jekyll environment should be production? I'm not sure sure what that means for this repo.

@MatisPatel
Copy link

I am having the same issue. Copied my tracking ID into the _config.yml but no tracking seems to occur.

@Linear95
Copy link

Hi, I came up with the same issue, but solved it by first change provider of analytics to "custom" in _config.yml, then directly copy your google analytics tracking code to _includes/analytics-providers/custom.html. Hope this can help :)

@JulianKlug
Copy link

JulianKlug commented Oct 28, 2020

Worked for me! Maybe this should be added in the comment in the _config.yml?

@pantonik
Copy link

Worked for me as well! Looks like Google changed the tracking script, so the one included in academicpages no longer works...

STaisiya pushed a commit to STaisiya/staisiya.github.io that referenced this issue Mar 25, 2021
@rogerioagjr
Copy link

This really works, thanks!

yunjunz added a commit to yunjunz/yunjunz.github.io that referenced this issue Jan 18, 2022
manideepabc added a commit to manideepabc/manideepabc.github.io that referenced this issue Sep 5, 2022
@saideepesh
Copy link

saideepesh commented Sep 13, 2022

Has Google Analytics stopped working for anyone else? It worked just fine with the 'custom' solution mentioned above, however, it stopped working since a month now.

@ozlemtuncel
Copy link

I have the same issue and custom solution does not work. As of January 2023, universal analytics tracking code will not work and switching to google analytics 4 is necessary. I have tried different things (like this stackoverflow answers) but could not figure it out!

@tnybny
Copy link

tnybny commented Feb 7, 2023

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

@ozlemtuncel
Copy link

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

Works perfect! Thank you so much!

DTSchroeder added a commit to DTSchroeder/DTSchroeder.github.io that referenced this issue Apr 8, 2023
@viniciuspr88
Copy link

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

This is super helpful. Many thanks!

@jaywt
Copy link

jaywt commented May 25, 2023

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

Fantastic! Thanks!

@ZijingWu381
Copy link

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

Awesome. Thank you!

@yxwu1999
Copy link

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

Fantastic! Very simple and clear

@viniciuspr88
Copy link

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

Hi everyone, I followed the steps outlined by @tnybny a couple of months ago and it worked beautifully. But my Google Analytics dashboard now says it stopped collecting data and I cannot seem to find a way to fix it. Anyone had the same issue and could advise? Many thanks!

mijtsma added a commit to mijtsma/mijtsma.github.io that referenced this issue Sep 1, 2023
Followed these instructions academicpages#265
michael-swift added a commit to michael-swift/michael-swift.github.io that referenced this issue Dec 14, 2023
boyiwei added a commit to boyiwei/boyiwei.github.io that referenced this issue Feb 10, 2024
@rjzupkoii rjzupkoii modified the milestones: v0.9, 2024 Refresh Feb 14, 2024
@rjzupkoii rjzupkoii added documentation Changes to documentation only (e.g., README, Guide, Wiki Pages, etc.) and removed enhancement An enhancement. labels Feb 17, 2024
@rjzupkoii rjzupkoii modified the milestones: 2024 Refresh, Documentation Feb 17, 2024
fliphilipp added a commit to fliphilipp/fliphilipp.github.io that referenced this issue May 16, 2024
@rjzupkoii rjzupkoii added enhancement An enhancement. help wanted An issue that could be handled by anyone. labels Sep 18, 2024
@rjzupkoii
Copy link
Collaborator

It looks like Google has updated analytics again so this might be more than just a documentation task. Since I don't use analytics on my own site, this might also be a good item for others to help out with.

@rjzupkoii rjzupkoii removed the enhancement An enhancement. label Jan 31, 2025
@huanfachen
Copy link

You just have to go a little further and it works fine. The following steps are needed:

  1. Set provider: "custom" in the _config.yml file.
  2. add your website's google tag script that you're given when you sign up for analytics 4 to _includes/analytics-providers/custom.html. It looks something like
<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());


<!-- end custom analytics snippet -->	  gtag('config', YOUR_TAG');
</script>
  1. From _includes/scripts.html, remove the line {% include analytics.html %}.
  2. In _layouts/default.html, add {% include analytics.html %} right after the <head> line.

This is super helpful, thanks!

BTW, if anyone is not sure how to set up Google analytics TAG, check out: https://support.google.com/analytics/answer/9539598?hl=en

steshinoki added a commit to steshinoki/steshinoki.github.io that referenced this issue Feb 21, 2025
commit 4f527d6
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 15 13:09:56 2025 -0500

    Close academicpages#2841, with code from @gopisivakanth

commit 2ac9022
Merge: 660a578 e7b600b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 9 13:14:29 2025 -0500

    Merge branch 'master' of https://github.com/academicpages/academicpages.github.io

commit 660a578
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 9 13:14:28 2025 -0500

    Exclude publications from category-list, close academicpages#2820

commit e7b600b
Merge: d04ee55 ef6c1ce
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Fri Feb 7 11:33:06 2025 -0500

    Merge pull request academicpages#2814 from librautoo/master

    update readme file

commit ef6c1ce
Author: librautoo <61204127+librautoo@users.noreply.github.com>
Date:   Wed Feb 5 14:33:40 2025 +0800

    update readme file

commit d04ee55
Merge: 7f94030 b7379ff
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Feb 4 20:59:43 2025 -0500

    Merge pull request academicpages#2811 from hosiet/pr-fix-favicon

    Fix handling of favicon

commit b7379ff
Author: Boyuan Yang <by.yang@pitt.edu>
Date:   Fri Aug 16 21:39:57 2024 -0400

    Fix handling of favicon

    Follow the blog of https://blog.ghkk.net/post/how-to-favicon-in-2021-six-files-that-fit-most-needs/

    * Remove everything about mstile.
    * Regenerate favicon using SVG file from
      https://commons.wikimedia.org/wiki/File:OOjs_UI_icon_academic-progressive.svg
      with minor tweaks in SVG viewBox.
    * Provide .svg, .ico, 32x32, 192x192, 512x512, and apple 180x180 .png icons.

    This commit closes: academicpages#2337 .

commit 7f94030
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 15:47:48 2025 -0500

    Examples w/o bookmarks bar

commit c32e4b4
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 13:22:51 2025 -0500

    Alphabetize the order of hte settings

commit 78f3351
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 13:12:10 2025 -0500

    academicpages#851 add the theme previews

commit 4594e4b
Merge: 47b944e 0ccd873
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 12:56:42 2025 -0500

    Merge branch 'academicpages#137'

commit 0ccd873
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Feb 2 12:21:22 2025 -0500

    academicpages#137, academicpages#851, academicpages#911, academicpages#1031 cleaning up remainder of direct references to theme colors

commit 83a76ed
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 22:04:20 2025 -0500

    academicpages#137, academicpages#911 sync variables between themes

commit 75d868b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 21:59:31 2025 -0500

    academicpages#137, academicpages#851, academicpages#911, academicpages#1031 dark theme that can be set via _config.yml

commit 2363012
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 21:19:36 2025 -0500

    Address issues with order

commit 077a671
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 20:13:54 2025 -0500

    academicpages#137 update to include theme as setting

commit e9ff0d0
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 20:11:09 2025 -0500

    academicpages#137 pull default theme into new directory

commit efa7892
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 20:07:40 2025 -0500

    Remove variables reference

commit d27ccb0
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:56:39 2025 -0500

    academicpages#137 consolidate into _themes.scss

commit e9b3774
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:44:16 2025 -0500

    Update organization of _sass

commit 122bd14
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:32:41 2025 -0500

    Update location for the layout

commit 22397f7
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:17:26 2025 -0500

    academicpages#137 correct the variable name

commit da4b443
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:07:35 2025 -0500

    Consolidate animations

commit e2b4ca2
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 19:04:49 2025 -0500

    Modernize syntax

commit 57346e4
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 15:19:10 2025 -0500

    Update order of color codes

commit a514a05
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 15:04:22 2025 -0500

    academicpages#137 updates for links

commit 8b4b631
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:57:57 2025 -0500

    academicpages#137 update base colors

commit a4acfd9
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:43:39 2025 -0500

    academicpages#137 update code

commit aaf064b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:36:54 2025 -0500

    academicpages#137 updated border-color

commit 438e61c
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 14:28:48 2025 -0500

    academicpages#137  start progress on themes

commit 47b944e
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:24:45 2025 -0500

    Update README.md

commit 509397d
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:24:14 2025 -0500

    Update README.md

commit 3f946c5
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:23:57 2025 -0500

    Update README.md

commit 1ebab2b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 13:09:02 2025 -0500

    Add GA updates to documentation, Close academicpages#265

commit 460ac0c
Merge: e53c946 b9e4c76
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Feb 1 12:46:35 2025 -0500

    Merge pull request academicpages#2799 from HirokiHamaguchi/master

    Fix several typos and bugs

commit b9e4c76
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 20:54:02 2025 +0900

    Fix site-nav problem in jquery.greedy-navigation.js

commit 71780d5
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:49:28 2025 +0900

    Adjust right-sidebar width to fix the spacing problem

commit bc79d8a
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:29:00 2025 +0900

    Fix the clock icons by fa-clock

commit 95e60fa
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:26:46 2025 +0900

    Fix link in talkmap.html

commit 837e279
Author: hari64 <hari64boli64@gmail.com>
Date:   Sat Feb 1 14:25:00 2025 +0900

    Fix typos of GitHub

commit e53c946
Merge: d021750 cd9f918
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Fri Jan 31 21:48:19 2025 -0500

    Merge pull request academicpages#2797 from non-det-alle/docker-fix

    Fix running locally with Docker

commit d021750
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Fri Jan 31 21:46:22 2025 -0500

    academicpages#2792 fix bad path

commit cd9f918
Author: Alessandro Aimi <alleaimi95@gmail.com>
Date:   Fri Jan 31 20:00:34 2025 +0100

    Fix running locally with Docker

commit 1acca92
Merge: 15c16b8 26c37c5
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Dec 29 19:17:21 2024 -0500

    Merge pull request academicpages#2717 from dimitra-maoutsa/master

    Update for scrapping talk location through github actions

commit 26c37c5
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Dec 29 19:17:06 2024 -0500

    Update _config.yml

    Keep talkmap_link false by default

commit 7be61a3
Author: Dimitra Maoutsa <maoutsa.d@hotmail.gr>
Date:   Sun Dec 29 21:37:12 2024 +0100

    Update _config.yml

commit a9501b9
Author: Dimitra Maoutsa <maoutsa.d@hotmail.gr>
Date:   Sun Dec 29 21:36:39 2024 +0100

    Create scrape_talks.yml

commit 15c16b8
Merge: be55d03 1ca871f
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Dec 28 16:13:37 2024 -0500

    Merge pull request academicpages#2713 from jacob-thompson/x-twitter

    replace Twitter share button with X share button

commit be55d03
Merge: 77b7368 cfb4d8a
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Dec 28 16:12:57 2024 -0500

    Merge pull request academicpages#2712 from jacob-thompson/master

    fix: Sitemap grammatical error

commit 1ca871f
Author: Jacob Thompson <jacobalthompson@gmail.com>
Date:   Fri Dec 27 16:19:28 2024 -0800

    replace Twitter share button with X share button

commit cfb4d8a
Author: Jacob Thompson <jacobalthompson@gmail.com>
Date:   Fri Dec 27 12:42:31 2024 -0800

    fix Sitemap grammatical error

commit 77b7368
Merge: e2a7acf a290b4d
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Dec 17 20:37:13 2024 -0500

    Merge pull request academicpages#2690 from FahimFBA/issue-2689

    fix: typo and extra line break

commit a290b4d
Author: FahimFBA <fahimbinamin@gmail.com>
Date:   Tue Dec 17 10:58:14 2024 +0600

    fix: typo and extra line break

    resolved issue 2689 and added extra line break to make the docs look better

commit e2a7acf
Merge: 4b94adc bd6cfdb
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Dec 16 23:08:06 2024 -0500

    Merge pull request academicpages#2688 from FahimFBA/issue-2687

    add: docker command related instructions for Windows users

commit bd6cfdb
Author: Md. Fahim Bin Amin <fahimbinamin@gmail.com>
Date:   Tue Dec 17 00:02:14 2024 +0600

    add: docker command related instructions for Windows users

commit 4b94adc
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Dec 15 15:46:51 2024 -0500

    Close academicpages#2637 toggle the wrapper on resize

commit a932981
Merge: fb54e7a 77b1d9d
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Dec 2 16:07:54 2024 -0500

    Merge pull request academicpages#2651 from oikos99/fix_link_contrast

    Improved color contrast for link text

commit 77b1d9d
Author: Paul Chiou <oikos99@users.noreply.github.com>
Date:   Mon Dec 2 11:43:23 2024 -0800

    improved link color contrast (updated color)

    updated the link text color from #236070 to #2F7F93 for improved readability and contrast as recommended by the developers

commit b42f6d1
Author: Paul Chiou <oikos99@users.noreply.github.com>
Date:   Sun Dec 1 13:30:27 2024 -0800

    improved link color contrast

    changed the links' blue color to a darker shade to meet color contrast (web accessibility) standards

commit fb54e7a
Merge: 79f5f6f bae6977
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Nov 30 22:01:26 2024 -0500

    Merge pull request academicpages#2645 from tomrannosaurus/patch-1

    Fixed non-working "redirect_from"

commit bae6977
Author: tomrannosaurus <tomrannosaurus@me.com>
Date:   Sat Nov 30 17:09:37 2024 -0500

    Update _config.yml

    added   - jekyll-redirect-from to plugins and whitelist

commit c0249a2
Author: tomrannosaurus <tomrannosaurus@me.com>
Date:   Sat Nov 30 17:06:08 2024 -0500

    Update Gemfile

    add   gem 'jekyll-redirect-from'

commit 79f5f6f
Merge: 04d9b5f 0f00a7a
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Nov 24 18:59:02 2024 -0500

    Merge pull request academicpages#2627 from mecaneer23/patch-1

    fix: typo

commit 0f00a7a
Author: Gabriel Natenshon <thechromecamera@gmail.com>
Date:   Sat Nov 23 14:50:50 2024 -0600

    fix: typo

commit 04d9b5f
Merge: e9f9c45 2eea7b8
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Nov 17 12:30:21 2024 -0500

    Merge pull request academicpages#2611 from TankTechnology/fix-zhihu-url

    Fix typo in Zhihu URL protocol in `_includes/author-profile.html`

commit 2eea7b8
Author: TankTechnology <2541826291@qq.com>
Date:   Mon Nov 18 00:05:31 2024 +0800

    Fix typo in Zhihu URL protocol in

commit e9f9c45
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Nov 11 10:26:35 2024 -0500

    academicpages#2591 clarify URL in config

commit d810cdf
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:46:53 2024 -0400

    Additional pointers for help

commit f53c209
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:40:15 2024 -0400

    Update README with example

commit 61109fe
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:36:05 2024 -0400

    Close academicpages#2493 Update for Bing crawler

commit df10002
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Mon Oct 28 21:33:02 2024 -0400

    Adjustments to the about

commit 77e6eb4
Merge: 8d09856 31ae7dc
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Oct 27 22:38:38 2024 -0400

    Merge pull request academicpages#2551 from dtortorella/master

    Add `scopus` in academic websites

commit 31ae7dc
Author: Domenico Tortorella <dom.tortorella@gmail.com>
Date:   Sun Oct 27 19:43:00 2024 +0100

    Add `scopus` in academic websites

commit 8d09856
Merge: a1a88b6 d23a5e9
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Fri Oct 18 17:15:45 2024 -0400

    Merge pull request academicpages#2535 from opasche/archive-single-slidesurl-fix

    Slides URL fix in "archive-single.html" includes template

commit d23a5e9
Author: OPasche <32179312+opasche@users.noreply.github.com>
Date:   Fri Oct 18 22:19:39 2024 +0200

    Update archive-single.html

    In the "archive-single" include, the "Download" word is repeated twice in the case when only a slidesURL is given.
    An extra paragraph ending is also mistakenly present.

commit a1a88b6
Merge: 9ec003f d493911
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Thu Oct 3 08:46:16 2024 -0400

    Merge pull request academicpages#2489 from zoelesv/master

    Update Dockerfile academicpages#2488

commit d493911
Author: Zoe <60870971+zoelesv@users.noreply.github.com>
Date:   Tue Oct 1 21:25:21 2024 -0700

    Update Dockerfile

commit 9ec003f
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 29 12:23:37 2024 -0400

    academicpages#1093 MV notebook to generator directory

commit 392368c
Merge: b90e6a3 b9a77f9
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 29 12:21:55 2024 -0400

    Merge branch 'master' of https://github.com/academicpages/academicpages.github.io

commit b90e6a3
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 29 12:21:52 2024 -0400

    Closes academicpages#2469 with update to only use username

commit b9a77f9
Merge: 73d65ff 784887a
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 29 12:20:06 2024 -0400

    Merge pull request academicpages#2480 from x-zang/patch-1

    improve alignment of "employer" sidebar

commit 784887a
Author: Xiaofei (Carl) Zang <xbz5174@psu.edu>
Date:   Sat Sep 28 17:35:35 2024 -0400

    Update author-profile.html

    improve alignment of "employer" sidebar

commit 73d65ff
Merge: d8c7955 31a8ce7
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Thu Sep 26 08:18:14 2024 -0400

    Merge pull request academicpages#2467 from c-martinez/harvest-orcid

    Add notebook to fetch publication information from orcid

commit 31a8ce7
Author: Carlos Martinez <neocarlitos@gmail.com>
Date:   Mon Sep 23 22:29:09 2024 +0200

    Add notebook to fetch publication information from orcid

commit d8c7955
Merge: 05d1019 3f6ba41
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Wed Sep 18 13:36:10 2024 -0400

    Merge pull request academicpages#2451 from Samir-Rashid/fix-padding-misalignment

    Fix padding misalignment

commit 05d1019
Merge: dc499dc a543542
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Wed Sep 18 13:32:42 2024 -0400

    Merge pull request academicpages#2450 from Samir-Rashid/fix-toc-width

    Fix toc crop (academicpages#221)

commit 3f6ba41
Author: Samir Rashid <Samir-Rashid@godsped.com>
Date:   Wed Sep 18 17:10:50 2024 +0000

    Fix misalignment of navigation bar with post body

    There was a regression in the template updates where the navigation bar no longer aligns with the post left margin at normal viewport.

commit cbc57c4
Author: Samir Rashid <Samir-Rashid@godsped.com>
Date:   Wed Sep 18 17:09:52 2024 +0000

    Reduce excessive footer padding

commit a543542
Author: Samir Rashid <Samir-Rashid@godsped.com>
Date:   Wed Sep 18 16:53:32 2024 +0000

    Fix toc crop (academicpages#221)

    Fix by @qhuang-math. I have also removed underlining of toc links, which was being overridden by post body css.

commit dc499dc
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 22:02:27 2024 -0400

    academicpages#828 adjustments to account for GitHub Pages limitations

commit 50001df
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 21:33:36 2024 -0400

    academicpages#828 different format string

commit 3ddeda5
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 21:16:59 2024 -0400

    Closes academicpages#828 with update to put the pages last update in the footer.

commit 9eec020
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 20:57:33 2024 -0400

    Minor formatting

commit 1dcebd1
Merge: 66e2f20 7aa6181
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 20:53:51 2024 -0400

    Merge branch 'master' of https://github.com/academicpages/academicpages.github.io

commit 66e2f20
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 20:53:49 2024 -0400

    Closes academicpages#146 with information the details HTML tag

commit 7aa6181
Merge: ef518d5 e37c098
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 20:41:46 2024 -0400

    Merge pull request academicpages#2445 from Samir-Rashid/fix-custom-comments

    Fix custom comments appearing at bottom of page

commit e37c098
Author: Samir Rashid <Samir-Rashid@godsped.com>
Date:   Wed Sep 18 00:26:45 2024 +0000

    bug: comments appear at bottom of page

commit ef518d5
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 19:56:47 2024 -0400

    Update README.md

commit 9639cbc
Merge: 0d4e024 40e3c2b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 17 19:47:31 2024 -0400

    Merge pull request academicpages#2441 from abcsds/master

    Add a dockerfile

commit 40e3c2b
Author: Alberto Barradas <abcsds@gmail.com>
Date:   Tue Sep 17 12:30:07 2024 -0600

    Add a dockerfile

commit 0d4e024
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 14:16:44 2024 -0400

    Closes academicpages#2287, academicpages#534 with updates to documentation, better emoji generation

commit 02973e0
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 13:51:39 2024 -0400

    Closes academicpages#1975 RM stickyfill in favor of native browser support

commit a683245
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 13:39:05 2024 -0400

    academicpages#1975 update smooth scroll to NPM

commit cd15f4a
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 13:32:48 2024 -0400

    academicpages#1975 update magnific-popup to NPM

commit 9706914
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 13:20:53 2024 -0400

    academicpages#1975 update fitvids to NPM

commit 6c98d76
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Sep 15 12:33:57 2024 -0400

    academicpages#1975 cleaning up the gem files a bit

commit 95118f6
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:56:50 2024 -0400

    Update README.md

commit 2fe408f
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:56:02 2024 -0400

    Update README.md

commit 4b8421f
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:52:23 2024 -0400

    Update README.md

commit ade2768
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:49:11 2024 -0400

    Update README.md

commit 4189d06
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:47:56 2024 -0400

    Update README.md

commit e63ceb1
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sat Sep 14 13:47:40 2024 -0400

    Update README.md

commit 3af723c
Merge: 6d5d9a7 803166b
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Wed Sep 11 10:58:32 2024 -0400

    Merge pull request academicpages#2419 from edbrito-swdev/fix-youtube-url-generation

    Fixing YouTube URL generation in author-profile.html

commit 803166b
Author: edbrito-swdev <90706749+edbrito-swdev@users.noreply.github.com>
Date:   Wed Sep 11 15:52:09 2024 +0100

    Fixing YouTube URL generation in author-profile.html

    YouTube does not use /user/username at the moment. If a person has a YouTube handle, the URL is:
    www.youtube.com/@HANDLE

    The fix is very minimal but I needed it for my website so I've also added it here.

commit 6d5d9a7
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Tue Sep 10 20:03:23 2024 -0400

    Update README.md

commit 823648a
Merge: 4097d7e 0c49f64
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Thu Aug 29 09:20:01 2024 -0400

    Merge pull request academicpages#2376 from 02hyc/master

    fix: the correct url of lastfm

commit 0c49f64
Author: Yanchen Huang <90331527+02hyc@users.noreply.github.com>
Date:   Thu Aug 29 11:36:06 2024 +0800

    fix: lastfm url

commit 4097d7e
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Aug 11 17:23:09 2024 -0400

    Closes academicpages#48 with a more general and customizable approach

commit aff2053
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Aug 11 14:46:19 2024 -0400

    Alphabetize the excludes

commit 90d592a
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Aug 11 13:51:37 2024 -0400

    academicpages#2318 updating documentation a bit

commit 09e3161
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Thu Aug 8 22:16:08 2024 -0400

    academicpages#2316 update padding

commit a5ede61
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Jun 16 10:31:17 2024 -0400

    Update README.md

commit 23c37c2
Merge: 5dee723 08ffadc
Author: rjzupkoii <rjzii@yahoo.com>
Date:   Sun Jun 16 10:26:16 2024 -0400

    Merge pull request academicpages#2193 from zarela/updates-readme

    README Update: Adds commands for MacOS

commit 08ffadc
Author: Zarela <zarelavp@yahoo.com>
Date:   Sat Jun 15 23:58:55 2024 -0400

    Adds commands for MacOS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Changes to documentation only (e.g., README, Guide, Wiki Pages, etc.) help wanted An issue that could be handled by anyone.
Projects
None yet
Development

No branches or pull requests