gpt4 book ai didi

php - 从 WooCommerce 订单中获取使用过的优惠券代码和相关折扣金额

转载 作者:行者123 更新时间:2023-12-04 08:02:44 27 4
gpt4 key购买 nike

我需要在自定义插件中插入代码以获取我在设置中输入的折扣代码的名称、使用代码获得的折扣和总数。
基于 Get coupon data from WooCommerce orders回答代码,我插入了以下代码:

$order = wc_get_order( $order_id );

// GET THE ORDER COUPON ITEMS
$order_items = $order->get_items('coupon');

// print_r($order_items); // For testing

// LOOP THROUGH ORDER COUPON ITEMS
foreach( $order_items as $item_id => $item ){

// Retrieving the coupon ID reference
$coupon_post_obj = get_page_by_title( $item->get_name(), OBJECT, 'shop_coupon' );
$coupon_id = $coupon_post_obj->ID;

// Get an instance of WC_Coupon object (necessary to use WC_Coupon methods)
$coupon = new WC_Coupon($coupon_id);

## Filtering with your coupon custom types
if( $coupon->is_type( 'fixed' ) || $coupon->is_type( 'percent' ) || $coupon->is_type( 'fixed_product' ) ){

// Get the Coupon discount amounts in the order
$order_discount_amount = wc_get_order_item_meta( $item_id, 'discount_amount', true );
$order_discount_tax_amount = wc_get_order_item_meta( $item_id, 'discount_amount_tax', true );

## Or get the coupon amount object
$coupons_amount = $coupons->get_amount();
}

}
$confirmation = str_ireplace("{order_items}", $order_items, $confirmation);
但它带给我的唯一信息,当我做 echo 时,就是“数组”这个词。
我究竟做错了什么?有什么帮助吗?

最佳答案

请尝试以下操作,这将添加一个逗号分隔的应用优惠券代码字符串及其各自的折扣金额:

$order  = wc_get_order( $order_id ); // If needed
$output = array(); // Initializing

// loop through order items "coupon"
foreach( $order->get_items('coupon') as $item_id => $item ){
// Get the coupon array data in an unprotected array
$data = $item->get_data();

// Format desired coupon data for output
$output[] = $data['code'] . ': ' . strip_tags( wc_price( $data['discount'] + $data['discount_tax'] ) );
}

$confirmation = str_ireplace("{order_items}", implode(', ', $output), $confirmation);

关于php - 从 WooCommerce 订单中获取使用过的优惠券代码和相关折扣金额,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66368915/

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