W
by Andrew Norcross
5 (1 reviews)
WP Comment Notes
Add custom notes before or after the comment form.
Tested up to WP 3.6 (Current: 6.8.2)
v1.0.0
Current Version v1.0.0
Updated 12 years ago
Last Update on 29 Sep, 2013
Synced 3 days ago
Last Synced on
Rank
#40,378
—
No change
Active Installs
10+
—
No change
KW Avg Position
97
—
No change
Downloads
2.3K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 20
10+
20+
14,740
Ranks to Climb
-
Growth Needed
12
Current Installs
Need 8 more installs to reach 20+
Rank Changes
Current
#40,378
Change
Best
#
Active Installs Growth
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
Estimated5.0
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| comment notes | 97 | — | Tag | 3 days ago |
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.0.0
- Last Updated
- Sep 29, 2013
- Requires WP
- 3.0+
- Tested Up To
- 3.6
- PHP Version
- N/A
- Author
- Andrew Norcross
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
User Switching
200K+ installs
#251
Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin
200K+ installs
#255
Photo Gallery by 10Web - Mobile-Friendly Image Gallery
200K+ installs
#267
WP-Sweep
100K+ installs
#285
reCaptcha by BestWebSoft
100K+ installs
#317
Frequently Asked Questions
Common questions about WP Comment Notes
function cmm_partial_types( $types ) {
$types[] = 'MY_CUSTOM_POST_TYPE';
return $types;
}
add_filter( 'wpcmn_type_support', 'cmm_partial_types' );
$types[] = 'MY_CUSTOM_POST_TYPE';
return $types;
}
add_filter( 'wpcmn_type_support', 'cmm_partial_types' );
function cmm_more_before( $before_type ) {
$extra = '';
$extra .= '<option value="wild" '.selected( $before_type, 'wild', false ).'>'.__('Wild', 'wpcmn').'</option>';
$extra .= '<option value="crazy" '.selected( $before_type, 'crazy', false ).'>'.__('Crazy', 'wpcmn').'</option>';
return $extra;
}
add_filter( 'wpcmn_before_types', 'cmm_more_before' );
I don't like the CSS that comes with it
Then write your own. It's a free country. If you have to disable it, use the wpcmn_killswitch filter. Example:
function cmm_killswitch() {
return true;
}
add_filter( 'wpcmn_killswitch', 'cmm_killswitch' );
Where is the settings menu?
There isn't one. On purpose.
They don't show up on my theme.
Then you're using a theme / framework that has gone cowboy and done it their own way. I can't do anything about that.
$extra = '';
$extra .= '<option value="wild" '.selected( $before_type, 'wild', false ).'>'.__('Wild', 'wpcmn').'</option>';
$extra .= '<option value="crazy" '.selected( $before_type, 'crazy', false ).'>'.__('Crazy', 'wpcmn').'</option>';
return $extra;
}
add_filter( 'wpcmn_before_types', 'cmm_more_before' );
I don't like the CSS that comes with it
Then write your own. It's a free country. If you have to disable it, use the wpcmn_killswitch filter. Example:
function cmm_killswitch() {
return true;
}
add_filter( 'wpcmn_killswitch', 'cmm_killswitch' );
Where is the settings menu?
There isn't one. On purpose.
They don't show up on my theme.
Then you're using a theme / framework that has gone cowboy and done it their own way. I can't do anything about that.