Avoid Customer Data Being Updated After Checkout in WooCommerce

Use this code snippet to avoid the customer data being updated after checkout in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_checkout_update_customer_data', '__return_false' );
1 Like