Hi Chau! There isn't any analytical reporting in Rise 360 itself, but we're tracking requests for integration for third-party analytics. If we make any changes to this that help, we'll let you know!
Hi Ina! Geotagging isn't a native feature in Rise 360, but I'll open the floor to the community to share their experience with geotagging learners here!
Once you've added the code to your Rise course, where do you go to see the analytics? I can't see it in our Google Analytics site so either I am looking in the wrong place or did something wrong.
Once you've added the code to your Rise course, where do you go to see the analytics? I can't see it in our Google Analytics site so either I am looking in the wrong place or did something wrong.
I've done that and the tracking is still not working for me. Is there any update or does this need to be added into an LMS first to work? Any help would be greatly appreciated.
Has anyone been able to do tracking in Rise 360? I was able to use the code David showed years ago but I was only able to see when a user opened the course. I tried adding Google Tag Manager and that took away my ability to see when someone opened the course. I am not sure what I am doing wrong, but would love some help with ways to track clicks, time on lessons etc. in Rise.
We are looking to collect basic statistics with the Riso 360 solution exported in html to be hosted on our website with Google Analytics or At Internet : visits, visitor, view page and number of click on a "Download button" or "Start quizz" button.
Can anyone share a tutorial or give me some insight ?
I did some tinkering and I think I figured it out. Basically I watch for title changes, which will happen when you open a new section in rise.
Any comments on this are highly appreciated.
<!-- (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXX"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());
// TODO enter your personal gtag-id here and in the second line gtag('config', 'G-XXXXXXXXX');
//// how to track page views in rise // 0) save the old title for later comparison let oldTitle = document.title; // 1) select the target node (title changes) let target = document.querySelector('title'); // 2) create an observer instance; this code will execute when a change is detected let observer = new MutationObserver(function(mutations) { if (oldTitle != document.title) { // console.log("oldTitle: " + oldTitle); // console.log("title: " + document.title); // console.log("mutation: " + mutations[0].target.text);
// reset the comparison to the current title oldTitle = document.title; // send change event to google analytics gtag('event', 'page_view', {'page_title': document.title, 'page_location': location.href}); } });
// 3) configuration of the observer: let config = { subtree: true, characterData: true, childList: true };
// 4) pass in the target node, as well as the observer options observer.observe(target, config); </script>
Are you referring to Rise.com? If you are, you can reach our Rise Happiness team here. Feel free to reference this post; we would love to discuss this with you.
87 Replies
Hi Chau! There isn't any analytical reporting in Rise 360 itself, but we're tracking requests for integration for third-party analytics. If we make any changes to this that help, we'll let you know!
Hi,
is geotagging with RISE possible? If yes, how does that work?
Can the learner be geolocated?
Thanks for your probpt replies.
Ina
Hi Ina! Geotagging isn't a native feature in Rise 360, but I'll open the floor to the community to share their experience with geotagging learners here!
Hi Alyssa,
thanks for your reply.
I am grateful for any feedback from the community regarding geo-tagging in e-Learning possibilities and experiences.
Best
Ina
Once you've added the code to your Rise course, where do you go to see the analytics? I can't see it in our Google Analytics site so either I am looking in the wrong place or did something wrong.
Once you've added the code to your Rise course, where do you go to see the analytics? I can't see it in our Google Analytics site so either I am looking in the wrong place or did something wrong.
I've done that and the tracking is still not working for me. Is there any update or does this need to be added into an LMS first to work? Any help would be greatly appreciated.
Has anyone been able to do tracking in Rise 360? I was able to use the code David showed years ago but I was only able to see when a user opened the course. I tried adding Google Tag Manager and that took away my ability to see when someone opened the course. I am not sure what I am doing wrong, but would love some help with ways to track clicks, time on lessons etc. in Rise.
Hi everyone,
I am digging out this topic.
We are looking to collect basic statistics with the Riso 360 solution exported in html to be hosted on our website with Google Analytics or At Internet : visits, visitor, view page and number of click on a "Download button" or "Start quizz" button.
Can anyone share a tutorial or give me some insight ?
Thanks,
Have a great day,
Minh-Tu
Hi - I'm keen to learn how to do this too!
I did some tinkering and I think I figured it out. Basically I watch for title changes, which will happen when you open a new section in rise.
Any comments on this are highly appreciated.
Can you also do this from Rise LMS?
Hi Samantha.
Are you referring to Rise.com? If you are, you can reach our Rise Happiness team here. Feel free to reference this post; we would love to discuss this with you.