Skip to content

Instantly share code, notes, and snippets.

<?php
add_action( 'woocommerce_add_order_item_meta', 'add_esn_fields');
public function add_esn_fields( $item_id, $values, $cart_item_key ) {
if($values['attached_id']){
$x = 1;
while($x <= $values['quantity']) {
wc_add_order_item_meta( $item_id, 'esn', '', false );
$x++;
}
}else if($values['type'] == 'wholesaler') {