Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Turn off new message notification
fr3em1nd
✭✭
how can i turn off new message notification on activities ? i need to turn it off since there's already a notification on the messages.
0
Answers
All you have to do is go into edit profile, Notifications settings, and your set to go!
Or if its a custom install you have a separate notifications settings just click their and set everything up.
This is a easy fix please read up top.
got this fixed long time ago, you cant turn it off actually with just simple notification settings i commented it out
in
vanilla\applications\conversations\settings\structure.php
this line: 135
$SQL->Insert('ActivityType', array('AllowComments' => '0', 'Name' => 'ConversationMessage', 'FullHeadline' => '%1$s sent you a %8$s.', 'ProfileHeadline' => '%1$s sent you a %8$s.', 'RouteCode' => 'message', 'Notify' => '1', 'Public' => '0'));
i turned it off since it's redundant when it shows up 1 message in inbox, and 1 notification in the notications area.
incase someone stumbles on same issues like me
'ConversationMessage', 'FullHeadline' => '%1$s sent you a %8$s.',
'ProfileHeadline' => '%1$s sent you a %8$s.', 'RouteCode' => 'message',
'Notify' => '1', 'Public' => '0'));`
Thanks for posting this.