needs_shipping_address();
?>
get_customer_note() ) : ?>
|
get_customer_note() ); ?> |
get_billing_email() ) : ?>
|
get_billing_email() ); ?> |
get_billing_phone() ) : ?>
|
get_billing_phone() ); ?> |
needs_shipping_address() ) : ?>
get_formatted_billing_address();
echo wp_kses_post( ( ! empty( $address ) ) ? $address : esc_html__( 'N/A', 'motors' ) );
/**
* Action hook fired after an address in the order customer details.
*
* @param string $address_type Type of address (billing or shipping).
* @param WC_Order $order Order object.
* @since 8.7.0
*/
do_action( 'woocommerce_order_details_after_customer_address', 'billing', $order );
?>
get_formatted_shipping_address();
echo wp_kses_post( ( ! empty( $address ) ) ? $address : __( 'N/A', 'motors' ) );
?>