gpt4 book ai didi

php - 从 WooCommerce 订单应用的优惠券中获取优惠券说明

转载 作者:行者123 更新时间:2023-12-03 19:09:55 25 4
gpt4 key购买 nike

我正在尝试在 WooCommerce 订单电子邮件上显示使用过的优惠券 + 添加说明。
显示优惠券的工作基于:
Add Applied Coupon Code in Admin New Order Email Template - WooCommerce
我也试过这个:

$coupons = $order->get_items( 'coupon' );
foreach ( $coupons as $item_id => $item ) {
echo "<span class='coupon-name'><b>".$item['name']."</b></span>";
$post = get_post( $item_id );
echo "<p class='coupon-description'>".$post->post_excerpt."</p>";
}
}
但是不起作用......有什么想法吗?

最佳答案

使用以下命令从“优惠券”订单项中获取优惠券说明:

// Loop through WC_Order_Item_Coupon Objects
foreach ( $order->get_items( 'coupon' ) as $item ) {
// Get the WC_Coupon Object
$coupon = new WC_Coupon($item->get_code());

// Display coupon description
echo "<p class='coupon-description'>".$coupon->get_description()."</p>";
}
相关: Get coupon data from WooCommerce orders

关于php - 从 WooCommerce 订单应用的优惠券中获取优惠券说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62540096/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com