can i disable profiile views notification?

dont want a notification in the member menu when using spy if someone views your profile, can i disable this?

Quote · 14 Oct 2010

as well as this, is it possible on the member menu that uses the spy menu and shows notifications of someone viewing your profile, i need this turned off, but want notifications of someone has posted on wall, or replyed, commented etc

Quote · 23 Oct 2010

You can do that by removing the alert for it.

In phpMyAdmin run this

SET @iHandlerId:= (SELECT `id` FROM `sys_alerts_handlers` WHERE `name`='bx_spy_content_activity' LIMIT 1);
DELETE FROM `sys_alerts` WHERE `unit` = 'profile' AND `action` = 'view' AND `handler_id`= @iHandlerId;


To put that back in. run this.

SET @iHandlerId:= (SELECT `id` FROM `sys_alerts_handlers` WHERE `name`='bx_spy_content_activity' LIMIT 1);
INSERT INTO `sys_alerts` SET `unit` = 'profile', `action` = 'view', `handler_id` = @iHandlerId;



I post the procedure to put it back in because some modifications done to a dolphin site may create problems if you go to update your site to a new version of dolphin. So it may need to be put back in before updating the site.

https://www.deanbassett.com
Quote · 23 Oct 2010
 
 
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.