I want to remove the Alert for {Profile} Rated Group, Video & Photo, I can't find this in bxprofileactivity.php although that's where most of the alerts are found... Does anyone have a clue?
I want to remove the Alert for {Profile} Rated Group, Video & Photo, I can't find this in bxprofileactivity.php although that's where most of the alerts are found... Does anyone have a clue? |
BUMP! Someone has to know this? The File BXSpyProfilesActivity.php controls the output of notifications such as, {Profile} rated {profile} or {Profile} Viewed {Profile} etc, but what file controls {Profile} joined {group}, {Profile} rated {Group}, {Profile} rated {Video}, {Profile} rated {Photo} etc etc? Please? |
BxGroupsModule.php does control All Wall Alters for Groups... BxAvaModule.php controls all Avatar Wall Alters (Add, Change Avatar) but BxVideosModule.php and BxPhotosModule.php only controls the Add Alter it does not control the "Rate" Alert, I don't know where those two Alters are which I really want to remove. |
Someone has to know the answer or can at least point me in the right direction. This is really starting to drive me nuts. What file handles alerts from spy module? |
Well I basically gave up trying to get any help here but by complete accident I was able to find the code that was causing the "Rate" Alert which is the main one I wanted to eliminate... It is BXDolVoting.php...
if ($this->_oQuery->putVote ($this->getId(), $_SERVER['REMOTE_ADDR'], $iVote)) { $this->_triggerVote(); require_once(BX_DIRECTORY_PATH_CLASSES . 'BxDolAlerts.php'); $oZ = new BxDolAlerts($this->_sSystem, 'rate', $this->getId(), $_COOKIE['memberID'], array ('rate' => $iVote)); //$oZ->alert(); return true; I commented out $oZ->alert(); and this did stop the output of the Alerts... It is located at line 237... Fyi
|