Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shameemreza/7b83913c44cbd41e4df481e712bc215f to your computer and use it in GitHub Desktop.
Save shameemreza/7b83913c44cbd41e4df481e712bc215f to your computer and use it in GitHub Desktop.
Uncheck follow-up replies via email checbox on WordPress.org Forum
// ==UserScript==
// @name Uncheck follow-up replies via email checbox
// @namespace http://tampermonkey.net/
// @version 0.1
// @description When you're on the WordPress.org forum, the system automatically selects the checkbox to receive follow-up replies via email. However, you don't have to subscribe to all threads as a support representative. This script will automatically uncheck this box.
// @author Shameem Reza
// @match https://wordpress.org/support/topic/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var checkbox = document.getElementById('bbp_topic_subscription');
if (checkbox) {
checkbox.checked = false;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment