Hi,
Those meta tags exist within the theme already on the single product page. Please view the source and look for:
<meta itemprop="price" content="715" />
<meta itemprop="priceCurrency" content="GBP" />
If you wanted to add more, you will need to edit the file woocommerce/content-single-product.php
and add in under line 116:
<meta property="og:title" content="<?php the_title(); ?>" />
<meta property="og:type" content="product" />
<meta property="og:price:amount" content="<?php echo $product->get_price(); ?>" />
<meta property="og:price:currency" content="<?php echo get_woocommerce_currency(); ?>" />
– David.