如何更改WooCommerce电子邮件中的文本

时间:2016-12-23 20:34:16

标签: wordpress woocommerce

enter image description here

你好,

觉得愚蠢无法做到这一点。

如何将“注释:”下方的文字更改为“航班号等”

我知道这与woocommerce_email_customer_details行动有关,但我不知道该怎么做。

请帮忙。

1 个答案:

答案 0 :(得分:0)

你试过这个吗?

add_filter( "woocommerce_email_customer_details_fields", "so_edit_my_note_field" );

function so_edit_my_note_field( $fields ) {
    if ( isset( $fields['customer_note'] ) ) {
        $fields['customer_note']['label']   =   "Flight numbers";
    }
    return $fields;
}

您可以在此文件中看到过滤器 - https://github.com/woocommerce/woocommerce/blob/master/includes/class-wc-emails.php#L363

祝你好运

相关问题