Plugin info

Total downloads: 4,318
Active installs: 80
Total reviews: 3
Average rating: 3.7
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 4 language(s)
Contributors: 1
Last updated: 9/11/2017 (3034 days ago)
Added to WordPress: 11/2/2016 (9 years old)
Minimum WordPress version: 4.0
Tested up to WordPress version: 4.8.27
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3034 days ago • 3 reviews

22/100

Is Multiple Google Analytics Trackers abandoned?

Possibly abandoned (last update 3034 days ago).

Compatibility

Requires WordPress: 4.0
Tested up to: 4.8.27
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WP Statistics – Simple, privacy-friendly Google Analytics alternative
Rating 4.1/5 (740 reviews)Active installs 600,000
Koko Analytics – Privacy+Friendly statistics for WordPress
Rating 5.0/5 (212 reviews)Active installs 60,000
GAS Injector
Rating 5.0/5 (1 reviews)Active installs 200
Seoatl On Site Google Analytics
Rating 0.0/5 (0 reviews)Active installs 10
Seoatl On Site Google Analytics
Rating 0.0/5 (0 reviews)Active installs 10

Description

Minimalistic Google Analytics plugin that lets you add one or more trackers and control exactly how the script is rendered.

Rendering the script

This plugin lets you control wether the Google Analytics script is printed in the -element, the -element or using a custom action.

There’s also a filter available, if you want to completely override the code that prints the analytics code. This way you can use the plugin simply for storing the property ID’s in the database and manually render the analytics script exactly as your want it.

The filter for overriding the script code is ahr-google-analtyics/script_file_path and you’d use it like so:

add_filter('ahr-google-analtyics/script_file_path', function($default_path){
    // return an absolute file path to the file you want to use for rendering the script
}, 10, 1);

Accessing the property ids via code

If you need to manipulate the Google Analytics property ids before they are printed, then use the ahr-google-analtyics'/property_ids filter. It’ll pass you an array of property ids as its single argument.

If you need to pull the ids from the database, in any other context, you can use $property_ids = get_option( AhrGoogleAnalytics::OPTION_IDS );

This plugin will always give you an array of ids. Even if you just have one.

Source code & contributions

Please feel free to contribute improvements, report bugs or suggest new features via the GitHub repo

Installation

  1. Move the ahr-google-analytics folder to the /wp-content/plugins/ directory OR search for ‘Multiple Google Analytics’ and add the plugin using WordPress’ plugin browser.
  2. Activate the plugin through the ‘Plugins’ page in WordPress
  3. Add one or more web property IDs (UA-XXXXXXX-X strings) on the settings page

Frequently Asked Questions

Installation Instructions

  1. Move the ahr-google-analytics folder to the /wp-content/plugins/ directory OR search for ‘Multiple Google Analytics’ and add the plugin using WordPress’ plugin browser.
  2. Activate the plugin through the ‘Plugins’ page in WordPress
  3. Add one or more web property IDs (UA-XXXXXXX-X strings) on the settings page

What is a Google Analytics property ID?

It’s the string looking like UA-XXXXXXX-X next to your website URL on https://analytics.google.com/analytics/web/

JavaScript: How do I track pageviews/events/etc. using multiple trackers

If you’re building a JavaScript-based web app and manually need to track custom routes or events you can use the ga.getAll() method to get an array of registered trackers and then run the tracking logic for each tracker.

For example, this will track page views based on custom routes:

if ( typeof ga === 'function' && typeof ga.getAll === 'function' ) {
  ga.getAll().forEach(tracker => {
    tracker.set('page', *my-custom-route*); // Custom route e.g. '/my-page'
    tracker.send('pageview');
  })
}

And here’s an example of tracking custom events:

if ( typeof ga === 'function' && typeof ga.getAll === 'function' ) {
  ga.getAll().forEach(tracker => {
    tracker.send('event', {
      eventCategory: 'Search',
      eventAction: 'Query',
      eventLabel: *query*, // Your search query
      eventValue: *matches.length* // Optionally, send the number of matches for the query
    });
  })
}

Review feed

No reviews available

Screenshots

  1. Default settings with 1 tracker and the script printed in wp_footer()

    Default settings with 1 tracker and the script printed in wp_footer()

  2. Using multiple trackers and the custom hook for printing the script

    Using multiple trackers and the custom hook for printing the script

Changelog

1.1.2

Release Date: September 11th, 2017

Add support for the new longer google analytics ID’s that would previously be rejected by the validator

1.1.1

Release Date: March 15th, 2017

Fixes a bug where default values weren’t set properly when first activating plugin

1.0.1

Release Date: December 11th, 2016

Fixes typos in plugin activation/deactivation callback functions

1.0.0

Release Date: November 2nd, 2016

  • Initial release. Yay!