Answers for "wc php get order get coupon discount amount"

PHP
0

wc php get order get coupon discount amount

foreach( $order->get_coupon_codes() as $coupon_code ) {
    // Get the WC_Coupon object
    $coupon = new WC_Coupon($coupon_code);

    $discount_type = $coupon->get_discount_type(); // Get coupon discount type
    $coupon_amount = $coupon->get_amount(); // Get coupon amount
}
Posted by: Guest on January-25-2022

Browse Popular Code Answers by Language