🚀 Soft Launch - Still in BETA! Play around and explore local services, local produce and pre-loved treasures. Report bugs to help us improve!

Browse Local Businesses

Found 147 businesses

147 businesses found

• Local Produce • Farm Shops

Nestled in the heart of Battersea, Battersea Farmers Market is your go-to destination for fresh, locally-sourced...

Battersea High St, London SW11 3JS

Professional business services in White Cross, Helston TR12 7BH. Contact Mayfield Farm Shop for more information...

White Cross, Helston TR12 7BH

Nestled in the heart of Paisley, Paisley Farmers' Market is your go-to destination for fresh, locally-sourced...

High St, Paisley PA1 2AE

Barnard Castle Farmers Market is a vibrant hub for fresh, locally-sourced produce and artisan goods, situated in the...

23 Market Pl, Barnard Castle DL12 8NE

Horsforth Farmers' Market is a vibrant monthly market situated in the heart of Town Street, Leeds. Dedicated to...

Town St, Leeds LS18 4AQ

Mercia Farmers’ Market, nestled in the charming Hunnypot Cottage, Elford, is a haven for those who appreciate the...

Hunnypot Cottage, Elford B79 9DB

Nestled in the heart of Hertfordshire, Little Hadham Farmers Market is your go-to destination for fresh, local...

Stortford Rd, Ware SG11 2DZ

Nestled in the heart of Dumfries at the Railway Station, Dumfries Farmers Market is a vibrant hub for locally...

Railway Station, Dumfries DG1 1NF

Moseley Farmers' Market is a vibrant monthly event, showcasing a splendid array of fresh, local produce and artisan...

Alcester Rd, Birmingham B13 8HS

Nestled in the heart of Cheshire, Baa Hill Farm Shop offers a delightful array of fresh, locally-sourced produce...

82 Bar Hill, Crewe CW3 9QE

The Farm Shop - Hulland is your quintessential countryside destination for fresh, locally-sourced produce and...

Main road, Ashbourne DE6 3EA

Nestled in the heart of Leyland, Paul's Farm Shop is your quintessential destination for locally sourced produce and...

Dunkirk Ln, Leyland PR26 7SY

🐝 Site Under Maintenance

We're currently performing maintenance and updates to bring you the best local business directory experience.

Please check back soon. We'll be back online shortly!

Need immediate assistance? Contact us here

// Universal marketplace link interceptor - intercepts ALL marketplace links document.addEventListener('DOMContentLoaded', function() { // Find all links pointing to marketplace const marketplaceLinks = document.querySelectorAll('a[href="/marketplace"], a[href*="marketplace_home"]'); marketplaceLinks.forEach(function(link) { // Check if link contains "Shop Marketplace" text or shopping cart icon const linkText = link.textContent.trim(); const hasShoppingIcon = link.querySelector('.fa-shopping-cart'); if (linkText.includes('Shop Marketplace') || linkText.includes('SHOP MARKETPLACE') || hasShoppingIcon) { // Prevent default navigation and show modal link.addEventListener('click', function(e) { e.preventDefault(); // Use the existing showMarketplaceModal function if (typeof showMarketplaceModal === 'function') { showMarketplaceModal(); } else { // Fallback - directly show the modal const modal = document.getElementById('freshMarketplaceModal'); if (modal) { const bsModal = new bootstrap.Modal(modal); bsModal.show(); } } }); } }); });