Subscribe to Comments 2 is a WordPress plugin that allows commenters on an entry to subscribe to e-mail notifications for subsequent comments. It does NOT e-mail you new blog posts. For that functionality, use Skippy's Subscribe2 plugin.
Here are some of the crucial Subscribe to Comments 2 links
subscribe-to-comments.php into [wordpress_dir]/wp-content/plugins/wp-subscription-manager.php into your blog's root WordPress directory (the directory where wp-config.php resides)comment_form hook, or if you would like to manually determine where in your comments form the subscribe checkbox appears, enter this where you would like it: <?php show_subscription_checkbox(); ?></form> tag for the comments form: <?php show_manual_subscription_form(); ?><?php if (comment_subscription_status()) { ?>
Subscribed
<?php } ?>style.css file:
/* SUBSCRIPTION MANAGER STYLE */
.subscription-manager {
padding: 10px 0 20px 0;
margin: 5px 0 0 55px;
width: 650px;
}
div.wrap {
background: #fafafa;
padding: 5px 10px;
margin: 20px 0;
border: 1px solid #ccc;
}
div.wrap h2 {
margin: .5em 0 1em 0;
border-bottom: 2px solid #589bd2;
}
div.wrap fieldset {
border: 1px solid #555;
margin: 1em 0;
padding: 5px 10px;
}
div.wrap fieldset legend {
font-weight: bold;
font-size: small;
}
div.wrap p.submit {
text-align: right;
}
.updated {
background: #B9D6EF;
border: 1px solid #589bd2;
margin: 1em 5% 10px;
padding: 0 1em;
}
.updated-error {
background-color: #FFA3A3;
border: 1px solid #FF5D5D;
}
div.wrap form {
margin: 0;
padding: 0;
}
div.warp li {
margin-bottom: 6px;
line-height: 130%;
}
/* END SUBSCRIPTION MANAGER STYLE */