Notice

The forum is in read only mode.

Support Forum

Welcome! Support Forums have been reactivated

Comment notifications stop after first comment

9 years 6 months ago
  • Chad's Avatar
    Topic Author
  • Chad
  • Offline
  • Fresh Boarder
  • Thank you received: 0
Licenses:
JomSocial Expired Socialize Expired

I am not sure where to post this so I posted here since the toolbar is part of this template.

I have noticed when one user comments on your activity stream item you get notification, but after that you no longer receive them. Please test this so I know it's not just me.

9 years 6 months ago
Licenses:

Hi Chad,

this is a bug. please wait for the fixes.

Thank You

9 years 6 months ago
  • Chad's Avatar
    Topic Author
  • Chad
  • Offline
  • Fresh Boarder
  • Thank you received: 0
Licenses:
JomSocial Expired Socialize Expired

Is there a ETA on this?

9 years 5 months ago
Licenses:

Hi Chad,

ETA: 2 - 4 weeks

Thank You

9 years 5 months ago
Licenses:

Hi Chad,

here the fix:
1. edit components/com_community/controllers/system.php
2. at around line 1669 find this code

if (!empty($users)) {
    CNotificationLibrary::add('profile_activity_add_comment', $my->id, $users, JText::sprintf('COM_COMMUNITY_ACITIVY_WALL_EMAIL_SUBJECT'), '', 'profile.activityreply', $params);
} else {
    CNotificationLibrary::add('profile_activity_add_comment', $my->id, $act->actor, JText::sprintf('COM_COMMUNITY_ACITIVY_WALL_EMAIL_SUBJECT'), '', 'profile.activitycomment', $params);
}
changing it to
if (!empty($users)) {
    if(!in_array($act->actor, $users)){
        array_push($users,$act->actor);
    }
    CNotificationLibrary::add('profile_activity_add_comment', $my->id, $users, JText::sprintf('COM_COMMUNITY_ACITIVY_WALL_EMAIL_SUBJECT'), '', 'profile.activityreply', $params);
} else {
    CNotificationLibrary::add('profile_activity_add_comment', $my->id, $act->actor, JText::sprintf('COM_COMMUNITY_ACITIVY_WALL_EMAIL_SUBJECT'), '', 'profile.activitycomment', $params);
}

Regards,
Albert

Moderators: Piotr Garasiński
Powered by Kunena Forum

Join 180,000 websites creating Amazing communities

JomSocial is the most complete, easy-to-use addon that turns Joomla CMS into a
full -fledged, social networking site

TRY NOW BUY NOW