Get orders shipping method details in WooCommerce 3

旧巷老猫 提交于 2019-11-27 01:46:36

问题


How can I get the order shipping method id....

For example 'flate_rate'.

Since WooCommerce 3.x.x it's not so easy as everything has changed.

I have try it with $order->get_data() in a foreach loop but the data is protected.


回答1:


If you want to get the Order Items Shipping data, you need first to get them in a foreach loop (for 'shipping' item type) and to use WC_Order_Item_Shipping methods to access data

$order_id = 528; // For example

// An instance of 
$order = wc_get_order($order_id);

// Iterating through order shipping items
foreach( $order->get_items( 'shipping' ) as $item_id => $shipping_item_obj ){
    $order_item_name             = $shipping_item_obj->get_name();
    $order_item_type             = $shipping_item_obj->get_type();
    $shipping_method_title       = $shipping_item_obj->get_method_title();
    $shipping_method_id          = $shipping_item_obj->get_method_id(); // The method ID
    $shipping_method_instance_id = $shipping_item_obj->get_instance_id(); // The instance ID
    $shipping_method_total       = $shipping_item_obj->get_total();
    $shipping_method_total_tax   = $shipping_item_obj->get_total_tax();
    $shipping_method_taxes       = $shipping_item_obj->get_taxes();
}

You can also get an array of this (unprotected and accessible) data using the WC_Data method get_data() inside this foreach loop:

$order_id = 528; // For example

// An instance of 
$order = wc_get_order($order_id);

// Iterating through order shipping items
foreach( $order->get_items( 'shipping' ) as $item_id => $shipping_item_obj ){
    // Get the data in an unprotected array
    $shipping_item_data = $shipping_item_obj->get_data();

    $shipping_data_id           = $shipping_data['id'];
    $shipping_data_order_id     = $shipping_data['order_id'];
    $shipping_data_name         = $shipping_data['name'];
    $shipping_data_method_title = $shipping_data['method_title'];
    $shipping_data_method_id    = $shipping_data['method_id'];
    $shipping_data_instance_id  = $shipping_data['instance_id'];
    $shipping_data_total        = $shipping_data['total'];
    $shipping_data_total_tax    = $shipping_data['total_tax'];
    $shipping_data_taxes        = $shipping_data['taxes'];
}

To finish you can use the following WC_Abstract_Order methods related to "Shipping data", like in this examples:

// Get an instance of the WC_Order object
$order = wc_get_order(522);

// Return an array of shipping costs within this order.
$order->get_shipping_methods(); // same thing than $order->get_items('shipping')

// Conditional function based on the Order shipping method 
if( $order->has_shipping_method('flat_rate') ) { 

    // Output formatted shipping method title.
    echo '<p>Shipping method name: '. $order->get_shipping_method()) .'</p>';


来源:https://stackoverflow.com/questions/46102428/get-orders-shipping-method-details-in-woocommerce-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!