将帐单国家/地区名称发送给Woocommerce管理员电子邮件Wordpress

时间:2018-11-26 07:10:20

标签: wordpress email woocommerce custom-fields country

来自function.php文件。

<?php 
        add_action( 'woocommerce_email_after_order_table', 'woocommerce_add_billing_address_to_admin_emails', 15, 2 ); 
         ?>

1 个答案:

答案 0 :(得分:1)

将此添加到您的 function.php 文件中。 :-)

<?php 
add_action( 'woocommerce_email_after_order_table', 'woocommerce_add_billing_address_to_admin_emails', 15, 2 ); 
function woocommerce_add_billing_address_to_admin_emails( $order, $is_admin_email ) { 
    if ( $is_admin_email ) { 
        echo '<div style="width:100%; background-color: #f2f2f2;">
            <p style="padding: 15px;margin: 15px 0;">Billing Country: <strong>'.WC()->countries->countries[ $order->billing_country ].'</strong></p>
            </div>';
    } 
} ?>