Warwickshire, Leamington Spa Foraging Courses

AVAILABILITY & BOOKING

Available Dates | Available Spaces | Time | Location | |
---|---|---|---|---|
Dates: Friday 11th Jul 2025 | Spaces: 17 | Time: 11:00am to 14:30pm (Approx End) | Location: The Red Lion | Click here for details and to book |

ABOUT THE COURSE

We will meet at the Red Lion, a beautiful riverside pub in the village of Hunningham on the outskirts of Leamington Spa. This lovely venue is within easy reach from Warwick, Coventry, Rugby, Banbury, Birmingham, Redditch and Leicester.
Our courses begin with a short introduction to Wild Food UK, what to expect from your day and a brief of the general countryside codes, including our Foraging Code.
Heading off at a leisurely pace around the grounds, your instructor will teach you how to safely identify the different species of edible and poisonous plants and mushrooms that you discover. This exploration will take about 2.5hrs, during which we’ll take a break for a homemade refreshment, such as our warming Hogweed & Wild Garlic soup or Elderflower Champagne!
After the walk we will end the day with a tasty Wild Food meal. This will include a selection of foraged homemade treats created by your instructor, and a dish made with what we have collected during the walk.
All of our food is seasonal, so what you are served depends on what is growing at that time of year. In Spring we will naturally tend to concentrate on the array of tasty fresh greens that the area has to offer.
You will receive a comprehensive set of Wild Food UK ‘course notes’ a few days after your course. This email will contain links and articles relating to the plants and mushrooms we discovered, or discussed during the day.
Please note that due to the route we take on this walk, dogs are not allowed on this course.

COURSE LOCATION

The Red Lion
Main Street
Hunningham
Leamington Spa
Warwickshire
CV33 9DY
(function( $ ) {
/**
* initMap
*
* Renders a Google Map onto the selected jQuery element
*
* @date 22/10/19
* @since 5.8.6
*
* @param jQuery $el The jQuery element.
* @return object The map instance.
*/
function initMap( $el ) {
// Find marker elements within map.
var $markers = $el.find('.marker');
// Create gerenic map.
var mapArgs = {
zoom : $el.data('zoom') || 16,
mapTypeId : google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map( $el[0], mapArgs );// Add markers.
map.markers = [];
$markers.each(function(){
initMarker( $(this), map );
});// Center map based on markers.
centerMap( map );// Return map instance.
return map;}/**
* initMarker
*
* Creates a marker for the given jQuery element and map.
*
* @date 22/10/19
* @since 5.8.6
*
* @param jQuery $el The jQuery element.
* @param object The map instance.
* @return object The marker instance.
*/
function initMarker( $marker, map ) {
// Get position from marker.
var lat = $marker.data('lat');
var lng = $marker.data('lng');
var latLng = {
lat: parseFloat( lat ),
lng: parseFloat( lng )
};
// Create marker instance.
var marker = new google.maps.Marker({
position : latLng,
map: map
});
// Append to reference for later use.
map.markers.push( marker );
// If marker contains HTML, add it to an infoWindow.
if( $marker.html() ){
// Create info window.
var infowindow = new google.maps.InfoWindow({
content: $marker.html()
});
// Show info window when marker is clicked.
google.maps.event.addListener(marker, 'click', function() {
infowindow.open( map, marker );
});
}
}/**
* centerMap
*
* Centers the map showing all markers in view.
*
* @date 22/10/19
* @since 5.8.6
*
* @param object The map instance.
* @return void
*/
function centerMap( map ) {
// Create map boundaries from all map markers.
var bounds = new google.maps.LatLngBounds();
map.markers.forEach(function( marker ){
bounds.extend({
lat: marker.position.lat(),
lng: marker.position.lng()
});
});
// Case: Single marker.
if( map.markers.length == 1 ){
map.setCenter( bounds.getCenter() );
// Case: Multiple markers.
} else{
map.fitBounds( bounds );
}
}
// Render maps on page load.
$(document).ready(function(){
$('.acf-map').each(function(){
var map = initMap( $(this) );
});
});
})(jQuery);
At the Red Lion.
WHERE TO MEET