Needles and Notions

Chiaogoo Forte Interchangeable Needle Set - Pre-order NOW!

Chiaogoo


$ 369.99
  • ChiaoGoo’s newest Special Edition interchangeable set, Forté, includes tips that are an elegant combination of sleek, stainless steel and luxurious, African Blackwood.
  • The set also boasts our new SWIV360 interchangeable cables. Silver in color, the cables have the same properties as the much-loved red and blue TWIST cables PLUS an added swivel feature! Knitters have been hoping for this for years.
  • We are happy to deliver and hope it captures your approval.
  • Made of REACH compliant man-made material, the Forté case is just as elegant and functional as the tips and cables. It includes a double-sided, removable needle board that firmly houses all tips; elastic that securely holds but gives easy access to accessories; and four pockets to hold the rest of your knitting supplies including a spot for your pattern or notes.
  • And, true to our other cases, it opens book-style with a full zipper enclosure to ensure that nothing falls out.
  • The Forté set includes 14 pairs of 5” (13 cm) tips US2 – 15 (2.75 – 10 mm). Each threaded steel join is laser etched with the tip diameter and join size which will not wear off ever.
  • The set comes with six memory-free SWIV360 cables, steel scissors, a measuring tape, end stoppers, stitch markers, darning needles, a swatch/needle gauge and much more! 
  • Plus, all Forté parts and pieces have [S] or [L] size joins so they are switchable with all of our other similarly coded interchangeable parts.

Available for PRE-ORDER NOW!

Related Products


const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/products/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }