May 04, 2020 8:11 am
Hi,
How to disable email notification when someone replies?
What I already did are disabling:
- Enable Subscription Confirmation
- Topic subscription option on post editor
- Topic subscription option on post editor - checked/enabled
Not sure if this is the "Enable User Notification". Let me know please.
For context, the hosting is advising me to do that since it makes our site slow. My initial traffic expectation were way below.
14 Replies
May 04, 2020 9:42 am
Just found it on the Email tab. Thank you!
May 04, 2020 10:06 am
Oh wrong, that's the User Mentioning that I disabled.
There's no option to disable "New reply notification email subject:".
Let me know if there's one please. Thanks!
May 04, 2020 12:12 pm
Additional question:
Does this code still works? or there is another way to not let editors see admin bar for wordpress.
function my_admin_bar_control_function() {
if (current_user_can('administrator') || current_user_can('editor') || current_user_can('author') ) {
show_admin_bar(true);
} else {
show_admin_bar(false);
}
}
add_action('init', 'my_admin_bar_control_function', 20);
Thanks!