Is there anyway to modify the plugin so that this override option is reversed?
I agree with rhythmofthecosmos when it comes to emailing your subscribers too much. I only want to email my subscribers once or twice a month, but I am posting almost everyday. so I'd much rather have the default as "don't send an email" and when you check the check box, it activates an email notification.
In the plugin php file I found this block of code that looks like it changes the check box, but I haven't been able to change the default. anyone have a solution?
Meta box code for WordPress 2.5+
*/
function s2_meta_box() {
global $post_ID;
$s2mail = get_post_meta($post_ID, 's2mail', true);
echo "<input type=\"hidden\" name=\"s2meta_nonce\" id=\"s2meta_nonce\" value=\"" . wp_create_nonce(md5(plugin_basename(__FILE__))) . "\" />";
echo __("Check here to disable sending of an email notification for this post/page", 'subscribe2');
echo " <input type=\"checkbox\" name=\"s2_meta_field\" value=\"no\"";
if ($s2mail == 'no') {
echo " checked=\"checked\"";
}
echo " />";
} // end s2_meta_box()