Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
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.

Just found it on the Email tab. Thank you!
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!
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!