Add user scrolling events to your Google Analytics simply by installing this plugin.
WP Scroll Depth is a simple WordPress plugin that loads and calls the Scroll Depth jQuery script.
Google Analytics doesn’t capture user scrolling information by default. This could be very important information if you have tall, scrolling, pages. Scroll Depth sends this information as Google Analytics events.
Update: Google Tag Manager now includes Scroll Depth and Element Visibility triggers. If you are running GTM, you don’t really need this plugin.
From the Scroll Depth website:
Scroll Depth is a small Google Analytics plugin that allows you to measure how far down the page your users are scrolling. It monitors the 25%, 50%, 75%, and 100% scroll points, sending a Google Analytics Event at each one.
You can also track when specific elements on the page are scrolled into view. On a blog, for example, you could send a Scroll Depth event whenever the user reaches the end of a post.
The plugin supports Universal Analytics, Classic Google Analytics, and Google Tag Manager.
More information about Scroll Depth can be found in the Scroll Depth documentation.
This version incorporates support for the new (Feb 2018) “gtag” Google Analytics snippet courtesy of Jalil Wahdatehagh.
This code has been modified to more closely match the event structure used by the other GA implementations.
Since this plugin sends Google Analytics Events, you must be running Google Analytics to see any results.
While jQuery is probably already available in your theme, in the unlikely event that it isn’t, you can use a plugin like WP jQuery Plus to add it to your site.
Load a page and view source. Look for “scrolldepth.” You should find:
<head>
section where scrolldepth.min.js is loaded. <head>
section where jQuery.scrollDepth();
is being called.If you don’t find the code there, then the plugin hasn’t loaded. Check the usual suspects about malfunctioning plugins.
Open the JavaScript/debugging console in your browser and load a page from your site.
If there are no errors and the code is being loaded, then it’s probably working. Time to test.
If there’s an error or conflict, please post in the support forums.
Open your Google Analytics and go to the Reporting tab for your site.
Click on Real-time and then Events.
Open another window or browser with your site.
Scroll! Scroll like the wind!
You should see events with a Category of “Scroll Depth.”
If you don’t see these events, make sure your Google Analytics is properly set up and configured.
Updated “Tested up to” version
Updated scrolldepth library to version 0.9 (2015 11 19)
Added new options:
– gtmOverride
– gaGlobal
– eventHandler
Tested with WordPress 4.4
Updated scrolldepth library to version 0.7.1 (2014 12 19)
Tested with WordPress 4.1
Initial commit