get_order_number(); ?>
billing_email; ?>
order_total; ?>
order_currency; ?>
payment_method_title; ?>
get_items() as $item_id => $item ) {
$product = apply_filters( ‘woocommerce_order_item_product’, $item->get_product(), $item );
$tsproduct = wc_get_product( $item[‘product_id’] );
echo ‘
‘.get_permalink($item[‘product_id’]).’
‘.get_the_post_thumbnail_url( $tsproduct->get_id(), ‘full’ ).’
‘.$item[‘name’].’
‘.$tsproduct->get_sku().’
‘;
echo “
“;
}
?>