Over 15 years experience in the wine industry

Australian Made & Manufactured

Ambleside No 8 Botanical Gin 700ml

Description

No. 8 showcases the zesty citrus flavour of South Australia’s very own organic Riverland oranges. This botanical gin is soft and smooth on the palate. The citrus notes are complemented by the distinct flavour of star anise and coriander seed.

On the Palate: Orange, fresh lemon, floral and peppery. The citrus extends through the mid palate.

Enjoy with a quality, floral tonic water and a slice or two of dehydrated orange.

700ml bottle size @ 40% Alc/Vol

Ambleside No 8 Botanical Gin 700ml

Original price was: $79.00.Current price is: $74.00.

On the Palate: Orange, fresh lemon, floral and peppery. The citrus extends through the mid palate.

Enjoy with a quality, floral tonic water and a slice or two of dehydrated orange.

700ml bottle size @ 40% Alc/Vol

<?php



		$organisation_name = "Wine Group";

		$price_Valid_Until = null; 

	$price_Valid_Until = "2024-12-30"; // Comment out to ignore
		// This is a comment



//Get the global product object
    global $product;
		
    //If there's no product object on page, exit function
    if (!is_object($product)) return;
    //Get the product image url

		$image = get_the_post_thumbnail_url( $product->get_id(), 'medium' );


		if (isset($price_Valid_Until))
    {
      $price_Valid_Until_code = "";
    }else
    {     
		$price_Valid_Until_code = "\"priceValidUntil\": \" $price_Valid_Until\",";
    }

		

?>

    <script type="application/ld+json">
        {
        "@context": "http://schema.org/",
        "@type": "Product",
        "name": "<?php echo $product->get_name();?>",
        "image": 
            "<?php echo $image;?>",
        
        "description": "<?php echo $product->get_short_description();?>",
        "mpn": "<?php echo $product->get_sku();?>",
 
        <?php
        if ($product->get_review_count() > 0) { ?>
      "aggregateRating": {
        "@type": "AggregateRating",
        "ratingValue": "<?php echo $product->get_average_rating();?>",
        "reviewCount": "<?php echo $product->get_review_count();?>"
      },
      <?php } ?>
      "offers": {
        "@type": "Offer",
        "url": "<?php echo get_permalink();?>",
        "priceCurrency": "<?php echo get_option('woocommerce_currency');?>",
        "price": "<?php echo $product->get_price();?>",
        <?php echo $price_Valid_Until_code;?>

        "itemCondition": "https://schema.org/NewCondition",
        "availability": "<?php echo $product->get_stock_status();?>",
        "seller": {
          "@type": "Organization",
          "name": "<?php echo $organisation_name;?>"
        }
      },
      "sku": "<?php echo $product->get_sku();?>"
    }
</script>