Notifications
Clear all

wpForo 1.x.x [Solved] No PM notifications. And removing likes

3 Posts
2 Users
2 Reactions
1,279 Views
Posts: 1163
Topic starter
(@percysgrowroom)
Noble Member
Joined: 5 years ago

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 

2 Replies
Posts: 988
Moderator
(@martin)
Support Team
Joined: 8 years ago

Hi @percysgrowroom,

Posted by: @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.

 

Posted by: @percysgrowroom

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)

1 Reply
(@percysgrowroom)
Joined: 5 years ago

Noble Member
Posts: 1163

@martin

Legend , thanks martin 🙂