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! 🎄
Sometimes I reply to my post from another account and I get the notification, other times I don't. It's only working like 25% of the time. What could be the problem?
We just tested and didn't found any issue with UM Notification. Make sure you're not replied to your yourself or in your topic. it doesn't create notification if you reply yourself or in your topic.
I found the solution to this problem. It was actually an Ultimate member problem. Anyone having same issue can add this filter to their site.
add_filter( 'um_notifications_exclude_types', 'um_notifications_exclude_types_wpforo' );
function um_notifications_exclude_types_wpforo( $exclude_type ){
array_push($exclude_type, "wpforo_user_reply", "wpforo_user_reply_to_reply");
return $exclude_type;
}
You can also exclude other things like profile views if you want UM to notify you of every profile view from the same user/guest:
add_filter( 'um_notifications_exclude_types', 'um_notifications_exclude_types_wpforo' );
function um_notifications_exclude_types_wpforo( $exclude_type ){
array_push($exclude_type, "wpforo_user_reply", "wpforo_user_reply_to_reply", "profile_view_guest", "profile_view");
return $exclude_type;
}