Collection: Stumped Wooden Toys

Stumped was founded in 2015 by a family-run business in Knysna, South Africa. Their aim was to introduce a range of wooden toys and kits that would reignite a love for timber crafts in homes across South Africa. After many months of product planning and testing, they developed their first collection.

Their ethos is rooted in open-ended play, where children learn to rely on their creativity to lead the way as they build and explore. They believe that imaginative, play-based learning is vital during early childhood development.

3 products
  • Picture Frame DIY Kit - Stumped
    Regular price
    R 220.00
    Sale price
    R 220.00
  • Pine & Ash Wooden Hammer : Stumped
    Regular price
    R 120.00
    Sale price
    R 120.00
  • Eco Friendly Paint Set - Stumped
    Regular price
    R 340.00
    Sale price
    R 340.00
const button = event.target.closest('.custom-product-add-to-cart'); if (!button) return; event.preventDefault(); const variantId = button.dataset.variantId; if (!variantId) { console.error('No variant ID found.'); return; } if (button.disabled) return; const originalText = button.textContent; button.disabled = true; button.textContent = 'Adding...'; fetch(window.Shopify.routes.root + 'cart/add.js', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ items: [ { id: Number(variantId), quantity: 1 } ] }) }) .then(function(response) { return response.json().then(function(data) { if (!response.ok) { throw new Error( data.description || 'Could not add product to cart.' ); } return data; }); }) .then(function(data) { button.textContent = 'Added ✓'; return fetch(window.Shopify.routes.root + 'cart.js'); }) .then(function(response) { return response.json(); }) .then(function(cart) { const cartCount = document.querySelector('[data-cart-count]') || document.querySelector('.cart-count-bubble'); if (cartCount) { cartCount.textContent = cart.item_count; } const cartDrawer = document.querySelector('cart-drawer'); if (cartDrawer && typeof cartDrawer.open === 'function') { cartDrawer.open(); } setTimeout(function() { button.disabled = false; button.textContent = originalText; }, 1500); }) .catch(function(error) { console.error('Add to cart error:', error); button.disabled = false; button.textContent = 'Error - try again'; setTimeout(function() { button.textContent = originalText; }, 2000); }); });