I finally figured it out you can query the metadata based on the post! On the Single-Page.php I added this code and styled it to my liking!
<?php
$price = get_post_meta($post->ID, '_grid_product_price', true);
if ($price) {
echo 'Price: ' .$price;
}
?>