Add Applied Coupon Code in Admin New Order Email Template - WooCommerce(在管理新订单电子邮件模板中添加应用的优惠券代码 - WooCommerce)
                            本文介绍了在管理新订单电子邮件模板中添加应用的优惠券代码 - WooCommerce的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
                        
                        问题描述
让我澄清一下我的问题:
Let me clear my question:
- 我已经下载 &已激活用于电子商务功能的 WooCommerce 插件.
 - 我想使用我的自定义插件在管理新订单电子邮件模板中添加应用的优惠券代码".
 
现在:
- 你能告诉我实际设置新订单电子邮件模板的确切钩子或函数,以便我覆盖它吗?
 - 你能告诉我如何调用应用的优惠券代码,以便我将其显示在电子邮件模板中吗?
 
如果你能帮助我,那就太好了.
It would be great, if you help me please.
推荐答案
这可以使用挂钩在 woocommerce_email_order_details 操作挂钩(例如)中的自定义函数来完成,该函数将在管理员电子邮件通知中显示订单中使用的优惠券:>
This can be done using a custom function hooked in woocommerce_email_order_details action hook (for example) that will display in admin emails notifications the used coupons in the order:
// 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 文件或任何插件文件中.
经过测试并有效...
这篇关于在管理新订单电子邮件模板中添加应用的优惠券代码 - WooCommerce的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
				 沃梦达教程
				
			本文标题为:在管理新订单电子邮件模板中添加应用的优惠券
				
        
 
            
        
             猜你喜欢
        
	     - Mod使用GET变量将子域重写为PHP 2021-01-01
 - 如何定位 php.ini 文件 (xampp) 2022-01-01
 - 没有作曲家的 PSR4 自动加载 2022-01-01
 - 带有通配符的 Laravel 验证器 2021-01-01
 - PHP Count 布尔数组中真值的数量 2021-01-01
 - Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
 - Laravel 仓库 2022-01-01
 - SoapClient 设置自定义 HTTP Header 2021-01-01
 - 从 PHP 中的输入表单获取日期 2022-01-01
 - 正确分离 PHP 中的逻辑/样式 2021-01-01
 
				
				
				
				