I try to get the name of the fees attached to a Woocommerce order and I get an array but I don't know how to get the name.
I tried using the function get_name ()
but it doesn't work.
$the_order->get_items( array( 'line_item', 'fee', 'shipping' ) );
Original data output:
[137] => WC_Order_Item_Fee Object ( [extra_data:protected] => Array ( [tax_class] => [tax_status] => taxable [amount] => [total] => [total_tax] => [taxes] => Array ( [total] => Array ( ) ) ) [data:protected] => Array ( [order_id] => 7795 [name] => Frais de réservation [tax_class] => 0 [tax_status] => taxable [amount] => [total] => 35 [total_tax] => 0 [taxes] => Array ( [total] => Array ( ) ) )
To access and use the properties of the order fee item, you need to use the WC_Order_Item_Fee method First use a foreach loop Like this:
Tested and valid