Get SKU
-
Hi. Thank you very much for this great plugin. I′m trying to get the SKU for each variant with this code but I don′t get it:
public function value( array $parameters ) { $order_items = $this->get_order()->get_items(); $items_with_sku = array(); foreach ( $order_items as $item ) { if ( $item instanceof \WC_Order_Item_Product ) { $item_with_sku = array(); $item_with_sku[] = $item->get_meta( 'op_item_data_details', true ); $items_with_sku[] = implode(' ', $item_with_sku); } } return implode('<br>', $items_with_sku['sku']);
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Get SKU’ is closed to new replies.