by Fumiki Takahashi
4 (3 reviews)
Anyway Feedback
This plugin enable users to send feedback with single click.
Compatible with WP 6.9.4
v1.2.1
Current Version v1.2.1
Updated 2 months ago
Last Update on 03 Feb, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#14,145
+22 this week
Active Installs
100+
—
No change
KW Avg Position
N/A
—
No change
Downloads
8.5K
+2 today
Support Resolved
0%
—
No change
Rating
80%
Review 4 out of 5
4
(3 reviews)
Next Milestone 200
100+
200+
1,436
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 34 more installs to reach 200+
Rank Changes
Current
#14,145
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
4.0
3 reviews
Overall
80%
5
2
(67%)
4
0
(0%)
3
0
(0%)
2
1
(33%)
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
- 1.2.1
- Last Updated
- Feb 03, 2026
- Requires WP
- 6.6+
- Tested Up To
- 6.9.4
- PHP Version
- 7.4 or higher
- Author
- Fumiki Takahashi
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4
- 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,718
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
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 Anyway Feedback
You can see it on your admin panel. Go to Options > Anyway Feedback.
No. If you need some custom post type, you have to register it. There are lots of plugins which register custom post type with GUI. After registration, you can easily add feedback controller to custom post type with Anyway Feedback plugin.
There are currently 2 ways. 1st is a feedback controller which displays number of people saying good or not. 2nd is a widget which displays most popular posts per post type.
Since version 1.2.0, the plugin dispatches a custom JavaScript event feedback.afb when a user submits feedback. You can listen to this event and send data to Google Analytics (or any other analytics service) yourself.
// e.detail contains: { type: 'post'|'comment', objectId: number, affirmative: 0|1 } gtag( 'event', 'feedback', { feedback_type: e.detail.type, object_id: e.detail.objectId,
} ); } ); Note: The built-in GA4 integration was removed in version 1.2.0. Use the custom event approach above for more flexibility.