Plugin info

Total downloads: 6,071
Active installs: 100
Total reviews: 3
Average rating: 3.7
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 8 language(s)
Contributors: 1
Last updated: 4/8/2020 (2093 days ago)
Added to WordPress: 3/6/2016 (9 years old)
Minimum WordPress version: 4.6
Tested up to WordPress version: 5.4.18
Minimum PHP version: 7.0

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2093 days ago • 3 reviews

22/100

Is Simple Comment Notification abandoned?

Possibly abandoned (last update 2093 days ago).

Compatibility

Requires WordPress: 4.6
Tested up to: 5.4.18
Requires PHP: 7.0

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Post Author Comment Notification
Rating 0.0/5 (0 reviews)Active installs 0
cbnet Multi Author Comment Notification
Rating 4.3/5 (6 reviews)Active installs 1,000
Comment Moderation E-mail only to Author
Rating 5.0/5 (4 reviews)Active installs 1,000
Custom Comment Notifications
Rating 5.0/5 (6 reviews)Active installs 100
Fix Gravatar Alt Text & Title Tag
Rating 0.0/5 (0 reviews)Active installs 100
Simple Author Highlighter
Rating 5.0/5 (1 reviews)Active installs 80

Description

Sends an simply email notification to the comment author, when someone replies to his comment. No configuration, support WordPress translation process.

Installation

In most cases you can install automatically from plugins page in admin panel.

However, if you want to install it manually, follow these steps:

  1. Download the plugin and unzip the archive.
  2. Upload the entire simple-comment-notification folder to the /wp-content/plugins/ directory.
  3. Activate the plugin through the Plugins menu in WordPress.

Frequently Asked Questions

Subscription

It’s possible to send email notification only if user checked subscription checkbox. To enable this functionality you must add such code (e.g. in functions.php in the active theme):

add_filter('scn_enable_subscription', '__return_true');

Optionally, you can also change default checkbox value to true:

add_filter('scn_subscribe_value', '__return_true');

Autoresponder

Plugin have a hidden functionality that sends autoresponder to the author of the comment. To turn it on you must add such code (e.g. in functions.php in the active theme):

add_filter('scn_autoresponder_to_author', '__return_true');

Optionally, you can also turn off default plugin functionality:

add_filter('scn_notify_parent_author', '__return_false');

The title and content of the autoresponder can be personalized:

function custom_scn_autoresponder_subject($subject, $comment_object) {
    return $subject;
}
add_filter('scn_autoresponder_subject', 'custom_scn_autoresponder_subject', 10, 2);

function custom_scn_autoresponder_body($body, $comment_object) {
    return $body;
}
add_filter('scn_autoresponder_body', 'custom_scn_autoresponder_body', 10, 2);

You can even set who will not receive this notifications by changing minimum required user capabilities:

function custom_scn_autoresponder_cap() {
    return 'edit_posts';
}
add_filter('scn_autoresponder_cap', 'custom_scn_autoresponder_cap');

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.2.4 (2020-04-08)

  • Fixed typos.

1.2.2 (2020-04-08)

  • Minor bugfix.

1.2 (2020-04-08)

  • Added subscription functionality (disabled by default).

1.1 (2017-03-12)

  • Fix the URL to a new comment.
  • Sending autoresponder to the author of the comment (disabled by default).

1.0.2 (2016-03-12)

  • Add POT file and remove language files to allow WordPress.org language packs to take effect.

1.0 (2016-03-06)

  • First public version.