Friends of Castle Park LogoCastle Park Logo

News

Castle Park Skate Park Works are Back Underway

A photo of the Skate Park | Castle Park, Bishops Stortford

The Castle Park project has been given the go-ahead to tackle the challenges recently encountered with the skate park. A new contractor will be on site at Sworder’s Field Skate Park in Bishop’s Stortford this month to continue work on its exciting transformation. 

PFL Group, a family-run business with over 20 years of experience, is taking over from Freestyle Collective after it went into administration in September. Work will start on the drainage and walkways this side of Christmas, followed by the construction of the skate park features in the new year. Final timeframes for completion will depend on weather over the winter months, but it is hoped the new facility can open to the public in spring 2023.

The project is funded by a £2.5m grant from The National Lottery Heritage Fund and National Lottery Community Fund, together with contributions from East Herts and Bishop’s Stortford Town Councils. Works include better connectivity between Castle Park, Sworder’s Field and Castle Gardens, improved access to Waytemore Castle, a community garden and café and a major refurbishment of the Markwell pavilion including new Changing Places toilets. 

<?php
$gallery = get_field('event_gallery', get_the_ID());
if ($gallery) : ?>
    <div class="event-gallery-grid"> <!-- Grid container -->
        <?php
        // Get 12 random images (use array_rand for random selection)
        $random_images = array_rand($gallery, 12); 
        foreach ((array)$random_images as $image) :
            $img_url = $gallery[$image]['url'];
            $img_alt = $gallery[$image]['alt'];
        ?>
            <div class="event-gallery-image">
                <!-- Anchor tag that links to the full image -->
                <a href="<?php echo $img_url; ?>" target="_blank">
                    <img src="<?php echo $img_url; ?>" alt="A photo of <?php echo $img_alt; ?>" />
                </a>
            </div>
        <?php endforeach; ?>
    </div> <!-- End grid container -->
<?php endif; ?>