Hi Lorro, Thanks for your help!
That code returns my Product name followed by the Product ID and Parent Sku at the bottom of the screen next to the shipping address.
To get my variation Sku do I need to do something like this?
`// Check if product has variation.
if ($product_variation_id) {
$product = new WC_Product($item[‘variation_id’]);
} else {
$product = new WC_Product($item[‘product_id’]);
}`
To address the location of the data on the screen do I need to create and adjust the template in the child theme?
I am trying to understand how all this works together. Thank you for your help.