Log in

View Full Version : Any tweaks to make Social Groups notifications useful?


Merriweather
02-11-2009, 03:15 PM
After spending the past 1+ hour reading, it seems clear that the Social Groups notifications (esp. the email notification) don't work well. But I haven't seen anyone post any tweaks that might make it better...

Does anyone have any tweaks they can share on either (1) how to get the email notices working or (2) how to get it to show under "New Notifications" (where you get notices of PMs, etc)?

Thank you!

cortinator
02-16-2009, 02:05 AM
I'd like to see some sort of improvement on the notification system as well.

Merriweather
02-16-2009, 04:55 PM
There's got to be someone out there who has figured something out... anyone have any ideas at all, or any code modifications they could share?

--------------- Added 1234814003 at 1234814003 ---------------

I found it!!! From this post: http://www.vbulletin.com/forum/project.php?issueid=27226

Guess it happens with specific permissions and this code in line 1523 of functions_socialgroup.php

while ($touser = $vbulletin->db->fetch_array($useremails))
{
// check user can view discussion
$permissions = cache_permissions($user, false);which should be


while ($touser = $vbulletin->db->fetch_array($useremails))
{
// check user can view discussion
$permissions = cache_permissions($touser, false);