【发布时间】:2020-02-05 23:12:32
【问题描述】:
我需要使订单电子邮件中的数量仅针对特定产品显示为双倍。我修改了 email-order-items.php 如下(不工作):
在第 28 行添加:$product_id = $product->get_product_id();
在第 79 行添加:
if( $product_id == 6960) {
$qty_display = '<del>' . esc_html( $qty ) . '</del> <ins>' . esc_html( $qty * 2 ) . '</ins>';
}
https://github.com/woocommerce/woocommerce/blob/master/templates/emails/email-order-items.php
【问题讨论】:
标签: php wordpress woocommerce