如何更改WooCommerce电子邮件中的电子邮件标签



是否可以将WooCommerce中的电子邮件标签 - "小计"和"总计"更改为其他?

电子邮件看起来像这样

正如您在此处看到的更改"运输"标签, 然后你明白了。

function change_email_labels( $total_rows, $order, $tax_display ) {
// Only on emails notifications
if( ! is_wc_endpoint_url() ) {
$total_rows['cart_subtotal']['label'] = __( 'My text 1', 'woocommerce');
$total_rows['order_total']['label'] = __( 'My text 2', 'woocommerce');
}
return $total_rows;
}
add_filter( 'woocommerce_get_order_item_totals', 'change_email_labels', 10, 3 );

最新更新