Disable Address Update On Customer When Updated In Checkout

Currently, when a customer changes billing or shipping information on order checkout, it automatically updates the customer record.

How do I disable this function?

The customer must be allowed to enter a different shipping address on checkout without making change to the shipping address in their customer profile.

Unfortunately at the moment you cannot disable this feature.

But we are planning to add such feature in our addon Checkout optimization.

Try top open the following file

app/functions/fn.cart.php

and replace

fn_update_user($user_id, $user_data, $auth, true, $send_notification);

with

//fn_update_user($user_id, $user_data, $auth, true, $send_notification);

(!) Not tested