woocommerce 后台订单地址那边不直接展示国家

前端订单页国家显示问题及解决代码
订单页不直接展示国家 点右上角的地址编辑会正常显示国家

add_filter( 'woocommerce_order_formatted_billing_address', 'custom_display_country_in_address', 10, 2 );
add_filter( 'woocommerce_order_formatted_shipping_address', 'custom_display_country_in_address', 10, 2 );

function custom_display_country_in_address( $address, $order ) {
    // 确保国家字段始终存在
    $address['country'] = $order->get_billing_country(); // 或 get_shipping_country()
    return $address;
}

// 强制在订单详情页输出国家(即使模板未调用)
add_action( 'woocommerce_admin_order_data_after_billing_address', 'display_country_fallback', 10, 1 );
add_action( 'woocommerce_admin_order_data_after_shipping_address', 'display_country_fallback', 10, 1 );

function display_country_fallback( $order ) {
    $country = $order->get_billing_country();
    if ( ! empty( $country ) ) {
        echo '<p><strong>' . __( 'Country', 'woocommerce' ) . ':</strong> ' . esc_html( $country ) . '</p>';
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值