How to disable notification of profile views

I don't want profile views to be trackable. Bascially whenever someone goes to my profile, I receive a notification of who it is on the bottom right. Is there a way to disable that?

 

In Advanced Settings / Profiles I found a check box for "Track all profile views. Later a member can manage these "views"."

 

I unchecked that and saved it but it does not appear to work. I still get notified.

 

Any ideas?

Quote · 15 Jul 2011

I am suffering with the same issue..This is very serious...

Quote · 15 Jul 2011

This will require modification to core D7 files:

Open siteroot/modules/boonex/spy/classes/BxSpyProfilesActivity.php

Around Line 84, Find:


case 'view' :
    if($iSenderId != $iRecipientId) {
        $aSenderInfo          = $this -> _getSenderInfo($iSenderId);
        $sSenderNickName      = $aSenderInfo['NickName'];
        $sSenderProfileLink   = $aSenderInfo['Link'];

        $aParams = array(
            'lang_key'  => '_bx_spy_profile_has_viewed',
            'params'    => array(
                'sender_p_link' => $sSenderProfileLink,
                'sender_p_nick' => $sSenderNickName,

                'recipient_p_link' => $sProfileLink,
                'recipient_p_nick' => $sNickName,
            ),
        );
}   
break;

 

Change to:

/*
case 'view' :
    if($iSenderId != $iRecipientId) {
        $aSenderInfo          = $this -> _getSenderInfo($iSenderId);
        $sSenderNickName      = $aSenderInfo['NickName'];
        $sSenderProfileLink   = $aSenderInfo['Link'];

        $aParams = array(
            'lang_key'  => '_bx_spy_profile_has_viewed',
            'params'    => array(
                'sender_p_link' => $sSenderProfileLink,
                'sender_p_nick' => $sSenderNickName,

                'recipient_p_link' => $sProfileLink,
                'recipient_p_nick' => $sNickName,
            ),
        );
}   
break;
*/

Skype: shawn.nelson
Quote · 15 Jul 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.