skip to Main Content

Woocommerce shipping address is empty

the option on the site "Default to customer billing address" is selected but the shipping address is still empty. I tried to fix it with code add_action( 'woocommerce_checkout_update_order_meta', 'my_custom_shipping_update_order_meta' ); function my_custom_shipping_update_order_meta( $order_id ) { if ( empty( $_POST['shipping_address_1'] )…

VIEW QUESTION
Back To Top
Search