在最近对 WooCommerce 的更新中,他们将折扣一词更改为优惠券。这是在订单总表中。请参阅此屏幕截图以获得 > 清晰度https://prnt.sc/sq6xfh
我想尽可能将其改回折扣,因为当您实际应用折扣时说优惠券真的没有意义。理想情况下,如果需要,最好显示折扣和优惠券行,因为有时您可能会应用优惠券和折扣。
现在,我正在尝试更改上面屏幕截图中指出的折扣标签。
我在插件核心文件中找到了代码并且知道我无法更改它,这是代码:
</tr>
<?php if ( 0 < $order->get_total_discount() ) : ?>
<tr>
<td class="label"><?php esc_html_e( 'Coupon(s):', 'woocommerce' ); ?></td>
<td width="1%"></td>
<td class="total">-
<?php echo wc_price( $order->get_total_discount(), array( 'currency' => $order->get_currency() ) ); // WPCS: XSS ok. ?>
</td>
</tr>
<?php endif; ?>
我不确定如何通过我的 functions.php 将上面代码中的 Coupon(s) 更改为 Discounts
任何帮助表示赞赏。干杯尼克
MMMHUHU