gpt4 book ai didi

wordpress - Woocommerce 更改客户名称顺序

转载 作者:行者123 更新时间:2023-12-04 15:56:02 26 4
gpt4 key购买 nike

我希望有人能帮助我!

我想在仪表板的 woocommerce 中更改客户名称顺序。

我使用此代码,它工作正常,但账单和运输订单名称的顺序仍然错误:

    function wp_update_display_name ( $user_login, $user ) {
$user_info = get_userdata($user->ID);
$first_name = $user_info->first_name;
$last_name = $user_info->last_name;

wp_update_user(array('ID' => $user->ID, 'display_name' => $last_name . ' '. $first_name));
}

add_action('wp_login', 'wp_update_display_name', PHP_INT_MAX, 2);

我使用通过 API 连接到 Woo 的计费软件。计费软件中的姓名顺序也是错误的。

编辑:当前状态为 [firstname] [lastname]。我住在匈牙利,顺序是 [lastname] [firstname]。

请帮帮我,本杰明

最佳答案

我遇到了同样的问题。首先我找到了this link ,但仅更改优先级无济于事。经过一些检查后,这就是我所做的:

$checkout_fields['billing']['billing_first_name']['priority'] = 20;  
$checkout_fields['billing']['billing_first_name']['class'][0] = 'form-row-last';
$checkout_fields['billing']['billing_last_name']['priority'] = 10;
$checkout_fields['billing']['billing_last_name']['class'][0] = 'form-row-first';

对我来说效果很好!

关于wordpress - Woocommerce 更改客户名称顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51608809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com