Code-Snippets-Functions/Execute a function on a child site/WooCommerce/reorder-account-password-field-on-checkout.txt

11 lines
395 B
Text

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);