AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

Filter by custom fields

Topic prefix

AI Assistant
Notifications
Clear all

[Solved] No PM notifications. And removing likes

3 Posts
2 Users
2 Reactions
2,367 Views
Posts: 1243
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@percysgrowroom)
Noble Member
Joined: 7 years ago
[#12864]

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: 996
Moderator
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@martin)
Support Team
Joined: 10 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: 7 years ago

Noble Member
Posts: 1243
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

@martin

Legend , thanks martin 🙂 


Share: