php WooCommerce订单电子邮件结算国家/地区

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce订单电子邮件结算国家/地区相关的知识,希望对你有一定的参考价值。

/*
 * Let's add some more information to the customer details block in admin emails
 * This particular example adds the billing country
 */
function mysite_filter_woocommerce_email_customer_details_fields( $fields, $sent_to_admin, $order ) {

    if ( $order->billing_country ) {
        $fields['billing_country'] = array(
            'label' => __( 'Country', 'woocommerce' ),
            'value' => WC()->countries->countries[ $order->billing_country ],
        );
    }

    return $fields;
};

// add the filter
add_filter( 'woocommerce_email_customer_details_fields', 'mysite_filter_woocommerce_email_customer_details_fields', 10, 3 );

以上是关于php WooCommerce订单电子邮件结算国家/地区的主要内容,如果未能解决你的问题,请参考以下文章

WooCommerce Admin创建订单并在订单支付上添加运费

WooCommerce - 从 functions.php 文件发送新订单/客户发票电子邮件

php Woocommerce在发送失败/取消订单时向客户发送电子邮件

php 将Moneris信用卡类型添加到woocommerce订单电子邮件中

php 将Moneris信用卡类型添加到woocommerce订单电子邮件中

WooCommerce 根据送货国家/地区更改电子邮件收件人