mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://stackoverflow.com/questions/77398394/how-to-force-woocommerce-shipping-address-to-show-in-order-emails
10 lines
398 B
Text
10 lines
398 B
Text
add_action( 'woocommerce_new_order', 'add_back_shipping_address_1', 20, 2 );
|
|
function add_back_shipping_address_1( $order_id, $order ) {
|
|
// Below, replace 'custom_field_key' with the correct key
|
|
$shipping_address_1 = $order->get_meta('custom_field_key');
|
|
|
|
if( ! empty($shipping_address_1) ) {
|
|
$order->set_shipping_address_1($shipping_address_1);
|
|
$order->save();
|
|
}
|
|
}
|