admin管理员组

文章数量:1343989

I'm having problems migrating from analytics.js to gtag.js. The issue is I can't make virtual pageviews work. How to replicate the following analytics.js code in gtag.js?

ga('set', 'page', path);
ga('send', 'pageview');

This code is in the a tag's onclick event.

This is a single page website which doesn't change the url when you click links.

I'm having problems migrating from analytics.js to gtag.js. The issue is I can't make virtual pageviews work. How to replicate the following analytics.js code in gtag.js?

ga('set', 'page', path);
ga('send', 'pageview');

This code is in the a tag's onclick event.

This is a single page website which doesn't change the url when you click links.

Share Improve this question asked Jan 24, 2018 at 21:42 DBalazsDBalazs 1312 silver badges11 bronze badges 1
  • Well you didn’t show how you are trying to send using gtag. So here is how to switch from ga to gtag. – James Commented Jan 24, 2018 at 21:59
Add a ment  | 

1 Answer 1

Reset to default 11

Your example code:

ga('set', 'page', path);
ga('send', 'pageview');

would bee:

gtag('config', 'UA-XXXXXXXXX-1', {'page_path': path});

Where 'UA-XXXXXXXXX-1' would be your google analytics tracking id.

Explained here.

本文标签: javascriptMigrate virtual pageviews to gtagjsStack Overflow