Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ckaklamanos/b208254209fa570e5a38275a7ecb06ef to your computer and use it in GitHub Desktop.

Select an option

Save ckaklamanos/b208254209fa570e5a38275a7ecb06ef to your computer and use it in GitHub Desktop.
Hide "Send the new user an email about their account."
add_action( 'user_new_form', 'fn_hide_notify_register_from_new_user_form' );
function fn_hide_notify_register_from_new_user_form() {
echo '<script>jQuery(document).ready(function($) {
$(".user-new-php #send_user_notification").closest("tr").hide();
} ); </script>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment