Mar 04, 2025 6:39 pm
I'd like to prevent the user from being notified when they are downvoted, but still notify the user of other reactions.
We're using the advanced reactions add-on.
Is this possible?
We can add a code snippet to functions.php if someone can share as well.
Thanks!
1 Reply
Mar 07, 2025 4:09 pm
add_action( 'wpforo_after_init', function() {
remove_action( 'wpforo_vote', [WPF()->activity, 'after_vote'], 10 );
}, 111 );