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(),
)));
}