Reorder password field on checkout in WooCommerce

Reorder password field on checkout in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function move_password_field($checkout_fields){
    // Move Account Password into Billing
    $checkout_fields['billing']['account_password'] = $checkout_fields['account']['account_password']; 

    // Remove Password from Billing
    unset($checkout_fields['account']['account_password']);

    return $checkout_fields;
}

add_filter('woocommerce_checkout_fields', 'move_password_field', 999);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.