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! 🎄
After the update, I am not receiving notifications when I receive messages.Â
Also, The likes in the notification feels redundant, and I want to stop that notification from showing in the notification bar. Is that possible.Â
Seems like I'm here every day again lol. Just want to get all of these issues sorted an I can leave you alone lolÂ
Hi @percysgrowroom,
After the update, I am not receiving notifications when I receive messages.Â
Please make sure, you're using the latest version of PM, we've released a new version for the notification integration. It's integrated with wpForo notification system. So all new PM notifications are included in the Notification Bell, don't search it in previous place.
Â
Also, The likes in the notification feels redundant, and I want to stop that notification from showing in the notification bar. Is that possible.Â
You should use this code in active theme functions php:
function my_custom_wpforo_notifications_filter( $args ){
  if( !empty($args) ){
     $args['types_exclude'] = 'new_like';
  }
  return $args;
}
add_filter('wpforo_get_notifications_args', 'my_custom_wpforo_notifications_filter', 10, 1);
How to Easily Add Custom Code in WordPress (without Breaking Your Site)