In this table you will find additional information regarding the specific dimensions of our paddle products. You can sort (click on the column headers) and filter out all of our shapes for the following paddle characteristics (all in inches):
Product Name
Overall paddle height and width
Useable "paddle head" height and width space (for factoring in general size of text and/or graphic space available on the main body of paddle
Our "standard" number size for the shape
A "maximum" size number that would fit and still look good (may have small setup charge)
Length of handle (if applicable)
The style of the handle (roundish, squareish, integraded based on shape etc.)
If there are any cutouts in the body of the shape (to add more realism)
// 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