Please suggest how to change personal user data for WooCommerce. I try:

$user_id = 1; $customer = new WC_Customer( $user_id ); $customer->set_billing_address( 'address_1' ); 

    1 answer 1

    Looked source. This function adds data to an object in memory. To save to the database, try this:

     $user_id = 1; $customer = new WC_Customer( $user_id ); $customer->set_billing_address( 'address_1' ); $customer->save(); 
    • Yes, it is, thanks! - try09