将格式化的地址状态代码更改为Woocommerce订单中的州名称

问题描述 投票:1回答:1

我希望显示完整的州名,而不是2个字母的州名缩写。

在此页面/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php

<div class="order_data_column">
                    <h3>
                        <?php esc_html_e( 'Billing', 'woocommerce' ); ?>
                        <a href="#" class="edit_address"><?php esc_html_e( 'Edit', 'woocommerce' ); ?></a>
                        <span>
                            <a href="#" class="load_customer_billing" style="display:none;"><?php esc_html_e( 'Load billing address', 'woocommerce' ); ?></a>
                        </span>
                    </h3>
                    <div class="address">
                        <?php

                        // Display values.
                        if ( $order->get_formatted_billing_address() ) {
                            echo '<p>' . wp_kses( $order->get_formatted_billing_address(), array( 'br' => array() ) ) . '</p>';
                        } else {
                            echo '<p class="none_set"><strong>' . __( 'Address:', 'woocommerce' ) . '</strong> ' . __( 'No billing address set.', 'woocommerce' ) . '</p>';
                        }

                        foreach ( self::$billing_fields as $key => $field ) {
                            if ( isset( $field['show'] ) && false === $field['show'] ) {
                                continue;
                            }

                            $field_name = 'billing_' . $key;

                            if ( isset( $field['value'] ) ) {
                                $field_value = $field['value'];
                            } elseif ( is_callable( array( $order, 'get_' . $field_name ) ) ) {
                                $field_value = $order->{"get_$field_name"}( 'edit' );
                            } else {
                                $field_value = $order->get_meta( '_' . $field_name );
                            }

                            if ( 'billing_phone' === $field_name ) {
                                $field_value = wc_make_phone_clickable( $field_value );
                            } else {
                                $field_value = make_clickable( esc_html( $field_value ) );
                            }

                            if ( $field_value ) {
                                echo '<p><strong>' . esc_html( $field['label'] ) . ':</strong> ' . wp_kses_post( $field_value ) . '</p>';
                            }
                        }
                        ?>
</div>

Abbreviation -> Full state name?

非常感谢你提前。

php wordpress woocommerce hook-woocommerce orders
1个回答
1
投票

Woocommerce中唯一一个将状态显示为格式化地址中的代码的国家是USA。

要在格式化的帐单或送货地址中显示USA的州名称,请使用以下代码:

add_filter( 'woocommerce_localisation_address_formats', 'change_localisation_usa_state_format', 20, 2 );
function change_localisation_usa_state_format( $address_formats ){
    $address_formats['US'] = "{name}\n{company}\n{address_1}\n{address_2}\n{city}, {state} {postcode}\n{country}";

    return $address_formats;
}

代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.