by Ahrengot
3.7 (3 reviews)
Multiple Google Analytics Trackers
Add one or more Google Analytics trackers to your website.
Tested up to WP 4.8.28 (Current: 6.9.4)
v1.1.2
Current Version v1.1.2
Updated 8 years ago
Last Update on 11 Sep, 2017
Refreshed 6 hours ago
Last Refreshed on
Rank
#18,614
—
No change
Active Installs
70+
—
No change
KW Avg Position
N/A
—
No change
Downloads
4.5K
—
Total downloads
Support Resolved
0%
—
No change
Rating
74%
Review 3.7 out of 5
3.7
(3 reviews)
Next Milestone 80
70+
80+
439
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 5 more installs to reach 80+
Rank Changes
Current
#18,614
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
3.7
3 reviews
Overall
74%
5
2
(67%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(33%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.1.2
- Last Updated
- Sep 11, 2017
- Requires WP
- 4.0+
- Tested Up To
- 4.8.28
- PHP Version
- N/A
- Author
- Ahrengot
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 3.7
- Reviews
- 3
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,711
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#952
Header and Footer Scripts
200K+ installs
#258
Post Views Counter
200K+ installs
#274
SEO SIMPLE PACK
100K+ installs
#322
Frequently Asked Questions
Common questions about Multiple Google Analytics Trackers
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 }); }) }