Disable Profile Change Notification

Hi,

I was wondering if there’s a settings or mod that will turn off the email notification the customer gets when they change anything on their profile?



Thanks!

To me that is a great feature. I would like to know if someone is accessing it and doing any changes.

Hello,

[quote name='Kathiew' timestamp='1421173443' post='202490']

Hi,

I was wondering if there's a settings or mod that will turn off the email notification the customer gets when they change anything on their profile?



Thanks!

[/quote]

As we remember, there is no a standard way to turn off this notification. Even in the admin panel each time you change the profile's data, you should turn off it manually.

[quote name='Kathiew' timestamp='1421173443' post='202490']

I was wondering if there's a settings or mod that will turn off the email notification the customer gets when they change anything on their profile?

[/quote]



All you need is to open the app\controllers\frontend\profiles.php file and replace:



$res = fn_update_user($auth['user_id'], $_REQUEST['user_data'], $auth, !empty($_REQUEST['ship_to_another']), true);




with



$res = fn_update_user($auth['user_id'], $_REQUEST['user_data'], $auth, !empty($_REQUEST['ship_to_another']), false);




Hope this will help

Thanks for both your replies!