在管理新订单中添加应用优惠券代码电子邮件模板 - WooCommerce

时间:2017-11-16 05:22:51

标签: php wordpress woocommerce coupon email-notifications

让我澄清一下我的问题:

  • 我已下载&激活了电子商务功能的WooCommerce插件。
  • 我想添加"应用优惠券代码"在管理员新订单电子邮件模板中使用我的自定义插件。

现在:

  1. 你能否告诉我实际设置新订单电子邮件模板的确切挂钩或功能,以便我覆盖它?
  2. 您能告诉我如何拨打应用的优惠券代码,以便在电子邮件模板中显示此内容吗?
  3. 如果你能帮助我,那就太棒了。

2 个答案:

答案 0 :(得分:3)

这可以使用挂在woocommerce_email_order_details动作挂钩(例如)中的自定义函数来完成,该挂钩将在管理员电子邮件中显示订单中使用的优惠券:

// The email function hooked that display the text
add_action( 'woocommerce_email_order_details', 'display_applied_coupons', 10, 4 );
function display_applied_coupons( $order, $sent_to_admin, $plain_text, $email ) {

    // Only for admins and when there at least 1 coupon in the order
    if ( ! $sent_to_admin && count($order->get_items('coupon') ) == 0 ) return;

    foreach( $order->get_items('coupon') as $coupon ){
        $coupon_codes[] = $coupon->get_code();
    }
    // For one coupon
    if( count($coupon_codes) == 1 ){
        $coupon_code = reset($coupon_codes);
        echo '<p>'.__( 'Coupon Used: ').$coupon_code.'<p>';
    } 
    // For multiple coupons
    else {
        $coupon_codes = implode( ', ', $coupon_codes);
        echo '<p>'.__( 'Coupons Used: ').$coupon_codes.'<p>';
    }
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

经过测试和工作......

答案 1 :(得分:0)

这是因为$coupon_codes不是array()用$coupon_codes=array();定义它