Get item weight from WooCommerce order

Viewed 29

I'm trying to get the quantity, total and weight for each item in an order.

Quantity and total work perfectly, but when I add $item->get_weight(), it breaks my plugin.

Here is my code; can anyone explain what's up with get_weight()?

foreach ($order->items as $item) {
  fputs($file, implode("|", array(
    $item->get_quantity(),
    $item->get_total(),      
    $item->get_weight(),
  )));
}
1 Answers

Got it:

foreach ($order->items as $item) {
  fputs($file, implode("|", array(
    $item->get_quantity(),
    $item->get_total(),      
    $item->get_product()->get_weight(),
  )));
}
Related