Please consider leaving a donation if you appreciate this information. Lightning network now available
3 November 2016 Update: As of WooCommerce Customer/Order CSV Export version 4.1, this will no longer be needed as version 4.1 will be using a state name instead of the code for the five countries which use this type of format.
Japanese addresses are a bit of a special case – apparently they roll a little bit differently. As a result of this when using the WooCommerce Customer/Order CSV Export extension the state names aren’t output but rather their ID. Fortunately this can be solved fairly easily with a small code snippet:
add_filter( 'wc_customer_order_csv_export_order_row', 'wooninja_get_state_name_for_user', 10, 3 ); | |
function wooninja_get_state_name_for_user( $order_data, $order, $csv_generator ) { | |
global $woocommerce; | |
$states = $woocommerce->countries->get_states(); | |
if ( isset( $states['JP'] ) ) { | |
if ( isset( $states['JP'][ $order_data['billing_state'] ] ) ) { | |
$order_data['billing_state'] = $states['JP'][ $order_data['billing_state'] ]; | |
} | |
if ( isset( $states['JP'][ $order_data['shipping_state'] ] ) ) { | |
$order_data['shipping_state'] = $states['JP'][ $order_data['shipping_state'] ]; | |
} | |
} | |
return $order_data; | |
} |
Not sure what to do with code snippets? See What Do I Do With These Code Snippets?
Please consider leaving a donation if you appreciate this information. Lightning network now available
Leave a Reply
You must be registered and logged in to post a comment.