WooCommerce-在新订单电子邮件中隐藏付款方式

时间:2016-10-14 作者:Nancy

我使用的是woocommerce 2.6.4,我试图自定义客户收到的电子邮件,作为新订单的确认。我需要隐藏电子邮件模板中订单详细信息的小计和付款方式。我在函数中输入了以下代码,设法隐藏了小计。php:

 add_filter( \'woocommerce_get_order_item_totals\', \'adjust_woocommerce_get_order_item_totals\' );

function adjust_woocommerce_get_order_item_totals( $totals ) {
  unset($totals[\'cart_subtotal\']  );
  return $totals;
}
 ?>
有没有办法隐藏付款方式?提前谢谢大家。

1 个回复
最合适的回答,由SO网友:Nancy 整理而成

我设法弄明白了这一点。对于任何有同样问题的人来说,这里有一个解决方案。只需添加

 unset( $totals[\'payment_method\'] );
之前

return $totals;