23 lines
627 B
PHP
23 lines
627 B
PHP
<?php
|
|
/**
|
|
* Email Addresses (plain)
|
|
*
|
|
* @author WooThemes
|
|
* @package WooCommerce/Templates/Emails/Plain
|
|
* @version 2.2.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
echo "\n" . __( 'Billing address', 'woocommerce' ) . ":\n";
|
|
echo preg_replace( '#<br\s*/?>#i', "\n", $order->get_formatted_billing_address() ) . "\n\n";
|
|
|
|
if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && ( $shipping = $order->get_formatted_shipping_address() ) ) {
|
|
|
|
echo __( 'Shipping address', 'woocommerce' ) . ":\n";
|
|
|
|
echo preg_replace( '#<br\s*/?>#i', "\n", $shipping ) . "\n\n";
|
|
}
|