在我的woocommerce商店中,我已经激活了付款说明,它们显示在所有电子邮件通知中。我有以下代码(从另一个答案中获取),该代码删除了“ COD”付款方式的付款说明:
add_action( 'woocommerce_email_before_order_table', function(){
if ( ! class_exists( 'WC_Payment_Gateways' ) ) return;
$gateways = WC_Payment_Gateways::instance(); // gateway instance
$available_gateways = $gateways->get_available_payment_gateways();
if ( isset( $available_gateways['cod'] ) )
remove_action( 'woocommerce_email_before_order_table', array( $available_gateways['cod'], 'email_instructions' ), 10, 3 );
}, 1 );
它在所有电子邮件通知中全局应用,我只需要从“客户已完成订单”电子邮件通知中删除付款说明。
感谢您的帮助。
答案 0 :(得分:0)
您的代码有些过时(或较旧),并且您错过了挂钩函数参数,这将使您可以定位“客户完成订单”电子邮件通知。尝试以下方法:
add_action( 'woocommerce_email_before_order_table', 'action_email_before_order_table_callback', 9, 4 );
function action_email_before_order_table_callback( $order, $sent_to_admin, $plain_text, $email ){
$payment_method = $order->get_payment_method();
// Targeting "COD" payment method on Customer completed order email notification
if ( 'customer_completed_order' === $email->id && 'cod' === $payment_method ) {
$available_gateways = WC()->payment_gateways->get_available_payment_gateways();
remove_action( 'woocommerce_email_before_order_table', [ $available_gateways[$payment_method], 'email_instructions' ], 10 );
}
}
代码进入活动子主题(或活动主题)的functions.php文件中。经过测试,可以正常工作。