Comment Tweaks
by jnorell 5 (1 reviews)

Comment Tweaks

Enhancements to Wordpress native comments

Comment Tweaks ranks #45,115 among WordPress.org plugins with 10+ active installations, is #1,158 of 2,900 in the Discussion & Community category, a 5/5 rating from 1 reviews, and was last updated Sep 13, 2021. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 5.8.17 (Current: 7.1.2)
v1.1.4 Current Version v1.1.4
Updated 5 years ago Last Update on 13 Sep, 2021
Refreshed 12 hours ago Last Refreshed on
#1,158 of 2,900 in Discussion & Community Top 50% by installs No update in over a year
View on WordPress.org
Rank
#45,115
+6914 this week
Active Installs
10+
-28.6%
KW Avg Position
N/A
No change
Downloads
2.9K
+2 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (1 reviews)

Next Milestone 20

Total Progress 0%
10+ 20+
31,853
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
Upgrade to Pro
Need 10 more installs to reach 20+

Rank Changes

32,637 35,827 39,017 42,207 45,397 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
32,254 36,274 40,294 44,314 48,335 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #45,115
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
1 reviews
Overall 100%
5
1 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about Comment Tweaks

Yes. The editor added to comments will be the WP editor (quicktags and/or tinymce), not Gutenberg.
Yes, the plugin settings are under Settings > Discussion > Comment Editing. Customizing the editor settings is possible using a filter, there is currently no settings page for this.
You can use the comment_tweaks_editor_settings filter to customize the appearance of WP editor. <?php add_filter( 'comment_tweaks_editor_settings', function( $settings, $editor_id ) { $settings = array( 'tinymce' => array( 'toolbar1' => 'bold,italic,underline,bullist,numlist,aligncenter,blockquote,link,undo,redo', 'plugins' => 'charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern,media', 'relative_urls' => true, ), 'quicktags' => false, ); return $settings; }, 10, 2); ?>
Yes, the 'Add Media' button can be enabled using custom settings for the WP editor, allowing site users to access media. <?php add_filter( 'comment_tweaks_editor_settings', function( $settings, $editor_id ) { $settings = array( 'mediaButtons' => true, 'tinymce' => array( 'media_buttons' => true, 'toolbar1' => 'bold,italic,underline,bullist,numlist,aligncenter,blockquote,link,undo,redo', 'plugins' => 'charmap,colorpicker,hr,lists,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wptextpattern,media', 'relative_urls' => true, ), 'quicktags' => array( 'buttons' => 'strong,em,ul,ol,li,block,link,img,close', ), ); return $settings; }, 10, 2); ?> Image captions display the [caption] shortcode Correct, enabling the 'Add Media' button allows users to add content and markup to the comments, but it does not change how that content is interpretted and displayed by your theme. You can alter comments display to process shortcodes, but be very careful not to create a security vulnerability. If anonymous users can add comments, and those comments are processed to execute shortcodes, you can easily allow anonymous users with many ways to abuse your site.

Sign In / Register

You need to sign in or register to use this feature.