Ping G440 Driver Headcover
/* Force a real 2-column grid on THIS list only, overriding the theme */ #product-desc-list{ display:grid !important; grid-template-columns:1fr 1fr; gap:0; list-style:none; margin: 0 0 16px 0; padding:0; column-count:initial !important; /* kill multi-column layout */ } #product-desc-list > li{ margin:0 !important; padding:6px !important; border-bottom:1px solid #d9d9d9 !important; float:none !important; /* kill float layouts */ width:auto !important; /* kill width:50% rules */ } #product-desc-list > li._left { border-right:1px solid #d9d9d9 !important; } Brand: Ping Model: G440 Headcover Type: Driver Headcover Material: Color: Multicolor (function () { // --- NEW LOGIC START --- // 1. Capture the department variable const department = ""; // 2. Identify the image element const chartImg = document.getElementById('chart-img'); // 3. Define the Women's Wood Chart URL const womenChartUrl = "https://cdn.shopify.com/s/files/1/0601/0165/6746/files/Women_s_Wood_Standard_Lengths.png?v=1771424027&width=1640"; // 4. If the department is exactly "Women", swap the source if (chartImg && department.trim() === 'Women') { chartImg.src = womenChartUrl; chartImg.alt = "Women's Wood Standard Lengths"; } // --- NEW LOGIC END --- const ul = document.getElementById('product-desc-list'); if (!ul) return; function pruneAndLayout(){ // Remove empty/unspecified rows instead of hiding them const items = Array.from(ul.querySelectorAll('li')); let kept = []; items.forEach(li => { const label = li.querySelector('b'); const labelText = label ? label.textContent : ''; const valueOnly = label ? li.textContent.replace(labelText, '').trim() : li.textContent.trim(); const emptyish = valueOnly === '' || valueOnly === '°' || /^(Not Specified|Not Specified°|Unspecified|Not Applicable|N\/A|NA)$/i.test(valueOnly); if (emptyish) li.remove(); else kept.push(li); }); // Re-mark visible items as left/right cells so borders line up kept = Array.from(ul.querySelectorAll('li')); // in case we removed some kept.forEach((li, i) => { li.classList.toggle('_left', i % 2 === 0); li.classList.toggle('_right', i % 2 === 1); }); // If odd count, add a blank cell so the last row closes cleanly if (kept.length % 2 === 1) { const filler = document.createElement('li'); filler.innerHTML = ''; ul.appendChild(filler); filler.classList.add('_right'); } // Show after we’re done so there’s no flash ul.style.visibility = 'visible'; } // Run immediately (before most theme scripts finish) pruneAndLayout(); // Guard: if the theme reflows/rewrites after our run, fix it again const mo = new MutationObserver(() => pruneAndLayout()); mo.observe(ul, { childList: true, subtree: false, attributes: false }); })(); /* * The theme duplicates the description for desktop tabs and * mobile accordions. Hide empty copies and show every copy that * actually contains a video iframe. */ .nr-desc .hide-if-empty[data-val=""] { display: none !important; } .nr-product-video { display: none; margin: 4px 0 32px; } .nr-product-video:has(iframe), .nr-product-video.is-ready { display: block !important; } .nr-product-video__title { margin: 0 0 14px; text-align: left; color: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; } .nr-product-video__frame { position: relative; width: 100%; max-width: 720px; margin: 0; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 12px; background: #000000; } .nr-product-video__frame iframe { position: absolute !important; inset: 0 !important; display: block !important; width: 100% !important; height: 100% !important; max-width: none !important; margin: 0 !important; padding: 0 !important; border: 0 !important; } @media screen and (max-width: 749px) { .nr-product-video { margin: 4px 0 24px; } .nr-product-video__title { margin-bottom: 12px; font-size: inherit; } .nr-product-video__frame { max-width: 100%; border-radius: 10px; } } This headcover is in mint condition. It is not in plastic but has never been used. Club Model Overview .pured-shaft-section { display: none; } .pured-shaft-section[data-pured^="Yes" i] { display: block; } Pured Shaft Upgrade This shaft has been pured through computerized analysis to identify its most stable, consistent bending plane, optimizing performance, increasing distance, tightening dispersion, and reducing natural structural irregularities. Our Recommendation About Ping Ping is one of the most trusted names in golf, known for fitting innovation, perimeter weighting, and iconic designs. From the G-series drivers to the legendary Anser putter, Ping delivers reliable performance for golfers at every level. Playing It Forward By choosing this premium used driver, you're not only investing in your own game but also contributing to Next Round Golf's mission of making golf more affordable and accessible for enthusiasts at every skill level. You’re joining a passionate community dedicated to sustainability, continuous improvement, and the shared joy of discovering new potential on the course. Next Round Guarantee With over 18,000 five star reviews and a 30 day money back guarantee, you can trust Next Round Golf for high-quality used Ping golf clubs. Stock # S2026-06-02-G440HC-002 Master SKU # (function () { function normalizeYouTubeUrl(source) { if (!source) { return source; } try { var url = new URL(source, window.location.href); var hostname = url.hostname .toLowerCase() .replace(/^www\./, ""); var videoId = ""; if (hostname === "youtu.be") { videoId = url.pathname.split("/").filter(Boolean)[0] || ""; } else if ( hostname === "youtube.com" || hostname === "m.youtube.com" || hostname === "music.youtube.com" || hostname === "youtube-nocookie.com" ) { if (url.pathname.indexOf("/embed/") === 0) { videoId = url.pathname.replace("/embed/", "").split("/")[0]; } else if (url.pathname === "/watch") { videoId = url.searchParams.get("v") || ""; } else if (url.pathname.indexOf("/shorts/") === 0) { videoId = url.pathname.replace("/shorts/", "").split("/")[0]; } else if (url.pathname.indexOf("/live/") === 0) { videoId = url.pathname.replace("/live/", "").split("/")[0]; } } if ( !videoId || !/^[A-Za-z0-9_-]{6,}$/.test(videoId) ) { return source; } var parameters = new URLSearchParams(url.search); parameters.delete("v"); parameters.set("playsinline", "1"); var queryString = parameters.toString(); return ( "https://www.youtube.com/embed/" + encodeURIComponent(videoId) + (queryString ? "?" + queryString : "") ); } catch (error) { return source; } } function prepareVideoBlock(videoBlock) { if ( !videoBlock || videoBlock.getAttribute("data-nr-video-ready") === "true" ) { return; } var videoFrame = videoBlock.querySelector( ".nr-product-video__frame" ); if (!videoFrame) { return; } var iframe = videoFrame.querySelector("iframe"); /* * Empty copies remain hidden through CSS. Do not remove them, * because the theme can create and populate copies later. */ if (!iframe) { return; } var originalSource = iframe.getAttribute("src") || ""; var normalizedSource = normalizeYouTubeUrl(originalSource); if ( normalizedSource && normalizedSource !== originalSource ) { iframe.setAttribute("src", normalizedSource); } iframe.removeAttribute("width"); iframe.removeAttribute("height"); iframe.removeAttribute("frameborder"); iframe.setAttribute("loading", "lazy"); iframe.setAttribute("allowfullscreen", ""); iframe.setAttribute( "allow", "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" ); iframe.setAttribute( "referrerpolicy", "strict-origin-when-cross-origin" ); if ( !iframe.getAttribute("title") || iframe.getAttribute("title") === "YouTube video player" ) { iframe.setAttribute( "title", "Golf club model overview video" ); } videoBlock.setAttribute( "data-nr-video-ready", "true" ); videoBlock.classList.add("is-ready"); } function initializeProductVideos(root) { if (!root) { return; } if ( root.nodeType === 1 && root.matches && root.matches(".nr-product-video") ) { prepareVideoBlock(root); } if (!root.querySelectorAll) { return; } var videoBlocks = root.querySelectorAll( ".nr-product-video" ); Array.prototype.forEach.call( videoBlocks, function (videoBlock) { prepareVideoBlock(videoBlock); } ); } if (window.nrInitializeProductVideos) { window.nrInitializeProductVideos(document); return; } window.nrInitializeProductVideos = initializeProductVideos; initializeProductVideos(document); if (document.readyState === "loading") { document.addEventListener( "DOMContentLoaded", function () { initializeProductVideos(document); }, { once: true } ); } /* * Process description copies created by the theme after the * original Sellbrite description has rendered. */ var videoObserver = new MutationObserver( function (mutations) { mutations.forEach(function (mutation) { Array.prototype.forEach.call( mutation.addedNodes, function (addedNode) { initializeProductVideos(addedNode); } ); }); } ); if (document.documentElement) { videoObserver.observe(document.documentElement, { childList: true, subtree: true }); } window.setTimeout(function () { initializeProductVideos(document); videoObserver.disconnect(); }, 10000); })();