From 687178a8cf17008795e2c5fd01240b42495a400c Mon Sep 17 00:00:00 2001 From: "Adam R. Jensen" <39184289+AdamRJensen@users.noreply.github.com> Date: Tue, 3 May 2022 19:16:55 +0200 Subject: [PATCH] Update example to correspond to Google Analytics ID The Google Universal Analytics (UA) IDs are being phased out, hence I think it makes more sense that the Pydata Sphinx theme example utilizes the new type of Google Analytics ID. Support for the new Google Analytics ID was added in #385 > Google Analytics 4 is our next-generation measurement solution, and is replacing Universal Analytics. On July 1, 2023, Universal Analytics properties will stop processing new hits. If you still rely on Universal Analytics, we recommend that you complete your move to Google Analytics 4. --- docs/user_guide/configuring.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user_guide/configuring.rst b/docs/user_guide/configuring.rst index bf99a9286..1d0ae087d 100644 --- a/docs/user_guide/configuring.rst +++ b/docs/user_guide/configuring.rst @@ -768,13 +768,13 @@ following configuration to your ``conf.py`` file: Google Analytics ================ -If the ``google_analytics_id`` config option is specified (like ``UA-XXXXXXX``), +If the ``google_analytics_id`` config option is specified (like ``G-XXXXXXXXXX``), Google Analytics' javascript is included in the html pages. .. code:: python html_theme_options = { - "google_analytics_id": "UA-XXXXXXX", + "google_analytics_id": "G-XXXXXXXXXX", }