by Finn Dohrn
5 (5 reviews)
Statify Widget
Data privacy conform widget for list popular content (pages, posts, custom post types) – based on Statify plugin.
Compatible with WP 6.9
vtrunk
Current Version vtrunk
Updated 1 month ago
Last Update on 30 Nov, 2025
Synced 10 hours ago
Last Synced on
Rank
#3,687
+3 this week
Active Installs
4K+
-7.7%
KW Avg Position
N/A
—
No change
Downloads
73.3K
+17 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(5 reviews)
Next Milestone 5K
4K+
5K+
268
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 645 more installs to reach 5K+
Rank Changes
Current
#3,687
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
5.0
5 reviews
Overall
100%
5
5
(100%)
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
Support Threads Overview
Resolved
Unresolved
1
Total Threads
0
Resolved
1
Unresolved
0%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Nov 30, 2025
- Requires WP
- 4.6+
- Tested Up To
- 6.9
- PHP Version
- 5.2.4 or higher
- Author
- Finn Dohrn
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 5
- Support Threads
- 1
- 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,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Qi Addons For Elementor
200K+ installs
#253
MW
MW WP Form
200K+ installs
#262
WPFront Scroll Top
200K+ installs
#270
Frequently Asked Questions
Common questions about Statify Widget
Yes! Since 1.4.1 you can add the following filter to change the default 4 minute cache (60 * 4) to another value in seconds: add_filter( 'statify_targets_cache_expiry', fn() => 60*4 ); If you do not set a numerical value greater than zero (>0), the standard cache expiry time is automatically used. I set the cache too high (remove cache) If you deactivate the plugin, all existing cache will be delete. After that you can activate Statify Widget again. Everything continues to work as usual. Show pages and posts together Yes! Since 1.1.4 that works. Just in the content type widget: select Pages and posts. He then displays the default content types "post" and "page" together. Show views in pages and posts This is possible with shortcodes. Specifying a prefix and suffix is not mandatory: Properties: days = Amount of days prefix= Text before the view count suffix= Text after the view count Shortcode: [statify-count prefix ="Total" suffix ="calls." days="8"] The total view counter for the whole webpage: [statify-count-sum prefix="Total" suffix="calls."] I do not have static page as homepage No problem. A pseudo "Frontpage" (with views) entry appears. I changed the permalink structure This changes nothing. The plugin takes every Statify entry and adds it together. Change design (CSS) Just use these CSS classes: * List: .statify-widget-list {...} * List item: .statify-widget-element {...} * List item view counter: .statify-widget-element span {...} * List item link: .statify-widget-link {...} Change list from numeric to points If you want to change the list of contents (1st, 2nd, 3rd, ...) to bullets, just add the following to your CSS: .statify-widget-element { list-style-type: circle; } ADVANCED: Change Widget Template Since 1.3.8 it is possible to customize the Widget Template by adding code to your Template functions.php. You can use the WP Post Object in the template. There exists two hooks: statify_widget_before_link statify_widget_after_link For Example add thumbnail before link in a div: function statify_custom_template($post) { echo '<div class="post_thumbnail">'. get_the_post_thumbnail($post->ID, 'thumb') .'</div>'; } add_action('statify_widget_before_link', 'statify_custom_template'); ADVANCED: Return all posts as WP Query For example put this in your theme: <?php if(function_exists('statify_popular_posts')) { $wp_query = statify_popular_posts( $amount = 5, $days = 30, $post_type = 'post', $post_category = 0 ); // Make WP Post loop... while ( $wp_query->have_posts() ) { $ wp_query->the_post(); } } ?> Properties $days = Range of days for statictics (0 = all days) $amount = Amount of posts $post_type = Post type ("post", "page", ...) $post_category = Category of the post, if post type is choosen