4

I want to pre-populate the values for the checkout's billing fields to the DB stored values of the user before his first purchase.

I've tried the following code:

add_filter( 'woocommerce_checkout_fields' , function ( $fields ) {
    $fields['billing']['billing_first_name']['placeholder'] = 'First Name';
    $fields['billing']['billing_first_name']['default'] = wp_get_current_user()->user_firstname;
    return $fields;
});

I've read about this solution in an other post. Placeholder works great, but the value doesn't.

Also, the WooCommerce Doc (Lesson 1) doesn't say about anything the array value 'default'

Community
  • 1
  • 1
Kode Bryant
  • 511
  • 8
  • 23

1 Answers1

3

You're pretty close. This worked for me. I don't know if it was necessary, but I used a named function and only get the user_firstname property if the user exists.

add_filter( 'woocommerce_checkout_fields' , 'kia_checkout_field_defaults', 20 );
function kia_checkout_field_defaults( $fields ) {
    $user = wp_get_current_user();
    $first_name = $user ? $user->user_firstname : '';
    $fields['billing']['billing_first_name']['placeholder'] = 'First Name';
    $fields['billing']['billing_first_name']['default'] = $first_name;
    return $fields;
}
helgatheviking
  • 25,596
  • 11
  • 95
  • 152