We've been making our paddles since 2003. And we're very good at it.
Actually, ALL of our paddles are custom shapes, since we've designed and manufactured all the shapes you see on this website. Some shapes are more popular than others (like the oval, the house, the heart), and some were created for just one customer (see the UofM tarpin turtle shape!). But in all cases, we CAN make YOUR shape, and we can do it for just $75 more than our basic-shaped paddles. If you want to USE an EXISTING 'fun' (non-basic) shape you find on our site, we charge just $50 to use it, all else equal.
If you are sure you have made the determination that you can and want to place an order, AND have researched our general pricing online (that is, you know what an order of paddles will cost) then we will likely extend you our time in creating your shape so you can see what it could look like. Before you purchase. Just give us a day to turn a proof around.
// Preserve quantity when variant options change
document.addEventListener('DOMContentLoaded', function() {
// Get the quantity input element
const quantityInput = document.querySelector('input[name="quantity"]');
// Get all the variant option selectors
const variantSelectors = document.querySelectorAll('.single-option-selector');
if (!quantityInput || !variantSelectors.length) return;
// Store the current quantity value
let currentQuantity = quantityInput.value || 1;
// Update the stored quantity when user changes it directly
quantityInput.addEventListener('change', function() {
currentQuantity = this.value;
});
// For each variant selector, add a listener to preserve quantity
variantSelectors.forEach(selector => {
selector.addEventListener('change', function() {
// Set a small timeout to let the variant change process complete
setTimeout(function() {
// Restore the quantity value
if (quantityInput.value !== currentQuantity) {
quantityInput.value = currentQuantity;
}
}, 10);
});
});
});
// New Zoho SalesIQ widget 4-21-2026