by pantsonhead
0 (0 reviews)
Activity Sparks
Display a customizable sparkline graph of post and/or comment activity.
Tested up to WP 4.2.39 (Current: 6.9.4)
v0.6.1
Current Version v0.6.1
Updated 10 years ago
Last Update on 18 Aug, 2015
Refreshed 6 hours ago
Last Refreshed on
Rank
#36,986
-1338 this week
Active Installs
10+
—
No change
KW Avg Position
N/A
—
No change
Downloads
4.1K
+2 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 20
10+
20+
12,005
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 6 more installs to reach 20+
Rank Changes
Current
#36,986
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
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
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
- 0.6.1
- Last Updated
- Aug 18, 2015
- Requires WP
- 2.8+
- Tested Up To
- 4.2.39
- PHP Version
- N/A
- Author
- pantsonhead
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- 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,708
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#955
Qi Addons For Elementor
200K+ installs
#252
MW
MW WP Form
200K+ installs
#266
WPFront Scroll Top
200K+ installs
#273
Frequently Asked Questions
Common questions about Activity Sparks
Basic template tag support was added in v0.3. The following code checks for plugin activation and renders with the default settings. <?php if(function_exists('activitysparks')) { activitysparks(); } ?> To change the default settings you must pass an array of the parameters you wish to alter. These are the available parameters and valid values dataset = 'posts', 'comments', 'both' or 'legend' width_px = positive integer height_px = positive integer period = 1, 7, 14, 30, etc. (number of days to group by) ticks = positive integer (number of periods to display) chma = 0 or positive integer (chart margin px) bkgrnd = 6 character hex value (e.g. FFFFFF) or 'NONE' for transparency posts_color = 6 character hex value (e.g 4D89F9) comments_color = 6 character hex value (e.g FF9900) An example of how to implement parameters is as follows: <?php if(function_exists('activitysparks')) { activitysparks(array('dataset'=>'legend','width_px'=>480,bkgrnd=>'NONE')); } ?> Caching is not available for the template tag implementation.