Answers for "change product id by order item id woocommerce"

0

woocommerce order item get product id

foreach ( $items as $item ) {
    $product_name = $item->get_name();
    $product_id = $item->get_product_id();
    $product_variation_id = $item->get_variation_id();
}
Posted by: Guest on September-01-2020

Code answers related to "change product id by order item id woocommerce"

Browse Popular Code Answers by Language