Is there a way to turn off comment notifications for users who are already subscribed to notifications for a comment?
I inherited a rather high-volume application that is sending notifications to users and I’d like to stop them. The form included the following ...
<input type="hidden" name="notify_me" value="no" {notify_me} />I’m assuming the
{notify_me}value="no"I’ve since changed it to
<input type="hidden" name="notify_me" value="no" />And suggested to the users they turn off notifications in their settings. However, as noted in this thread, users who previously submitted the form (I’m assuming this is the issue) are still receiving notifications.
Is there a way to stop them?