我正在WooCommerce中自定义订单电子邮件模板,需要将“发货”的标题更改为“交货”,并将“发货地址”更改为“交货地址”。我尝试了一个插件“ Say What”,该插件可以更改文本,但不起作用。有一个循环处理所有这些信息。
这是“ email-order-details.php”页面上第52行的代码。
if ( $totals = $order->get_order_item_totals() ) {
$i = 0;
foreach ( $totals as $total ) {
$i++;
if($total['label'] === "Shipping"){
//make second-last above total somehow
}
else{
?><tr>
<th class="td" scope="row" colspan="3" style="text-align:<?php echo $text_align; ?>; <?php echo ( 1 === $i ) ? 'border-top-width: 4px;' : ''; ?>"><?php echo $total['label']; ?></th>
<td class="td" style="text-align:left; <?php echo ( 1 === $i ) ? 'border-top-width: 4px;' : ''; ?>" colspan="1"><?php echo $total['value']; ?></td>
</tr><?php
}
}
}
我认为这是一个过滤器挂钩,但是我不确定如何使用它。
woocommerce_get_order_item_totals
答案 0 :(得分:1)
可以使用以下挂钩函数完成此操作:
add_filter( 'woocommerce_get_order_item_totals', 'renaming_shipping_order_item_totals', 10, 3 );
function renaming_shipping_order_item_totals( $total_rows, $order, $tax_display ){
// Only on emails notifications
if( ! is_wc_endpoint_url() )
$total_rows['shipping']['label'] = __('Delivery', 'woocommerce');
return $total_rows;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
要将“收货地址”标签更改为“收货地址”,您需要复制/编辑模板email-addresses.php
,并替换为:
_e( 'Shipping address', 'woocommerce' );
作者:
_e( 'Delivery address', 'woocommerce' );